From 6fd82f8d4261c3050559658f8eb5a993f17788c8 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Mon, 17 Jun 2024 17:16:08 -0400 Subject: [PATCH 01/18] sync spec tests - no other changes needed --- .../retryable_writes.spec.test.ts | 2 +- .../unified/insertOne-serverErrors.json | 303 ++++++++++++++++++ .../unified/insertOne-serverErrors.yml | 120 +++++++ 3 files changed, 424 insertions(+), 1 deletion(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index a8e1412584..a29f450e4a 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -203,6 +203,6 @@ async function turnOffFailPoint(client, name) { }); } -describe('Retryable Writes (unified)', function () { +describe.only('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified'))); }); diff --git a/test/spec/retryable-writes/unified/insertOne-serverErrors.json b/test/spec/retryable-writes/unified/insertOne-serverErrors.json index 0d0d639cd4..89827fcf3f 100644 --- a/test/spec/retryable-writes/unified/insertOne-serverErrors.json +++ b/test/spec/retryable-writes/unified/insertOne-serverErrors.json @@ -165,6 +165,309 @@ ] } ] + }, + { + "description": "RetryableWriteError label is added based on top-level code in pre-4.4 server response", + "runOnRequirements": [ + { + "minServerVersion": "4.2", + "maxServerVersion": "4.2.99", + "topologies": [ + "replicaset", + "sharded" + ] + } + ], + "operations": [ + { + "name": "failPoint", + "object": "testRunner", + "arguments": { + "client": "client0", + "failPoint": { + "configureFailPoint": "failCommand", + "mode": { + "times": 2 + }, + "data": { + "failCommands": [ + "insert" + ], + "errorCode": 189 + } + } + } + }, + { + "name": "insertOne", + "object": "collection0", + "arguments": { + "document": { + "_id": 3, + "x": 33 + } + }, + "expectError": { + "errorLabelsContain": [ + "RetryableWriteError" + ] + } + } + ], + "expectEvents": [ + { + "client": "client0", + "events": [ + { + "commandStartedEvent": { + "command": { + "insert": "coll", + "documents": [ + { + "_id": 3, + "x": 33 + } + ] + }, + "commandName": "insert", + "databaseName": "retryable-writes-tests" + } + }, + { + "commandStartedEvent": { + "command": { + "insert": "coll", + "documents": [ + { + "_id": 3, + "x": 33 + } + ] + }, + "commandName": "insert", + "databaseName": "retryable-writes-tests" + } + } + ] + } + ], + "outcome": [ + { + "collectionName": "coll", + "databaseName": "retryable-writes-tests", + "documents": [ + { + "_id": 1, + "x": 11 + }, + { + "_id": 2, + "x": 22 + } + ] + } + ] + }, + { + "description": "RetryableWriteError label is added based on writeConcernError in pre-4.4 mongod response", + "runOnRequirements": [ + { + "minServerVersion": "4.2", + "maxServerVersion": "4.2.99", + "topologies": [ + "replicaset" + ] + } + ], + "operations": [ + { + "name": "failPoint", + "object": "testRunner", + "arguments": { + "client": "client0", + "failPoint": { + "configureFailPoint": "failCommand", + "mode": { + "times": 2 + }, + "data": { + "failCommands": [ + "insert" + ], + "writeConcernError": { + "code": 91, + "errmsg": "Replication is being shut down" + } + } + } + } + }, + { + "name": "insertOne", + "object": "collection0", + "arguments": { + "document": { + "_id": 3, + "x": 33 + } + }, + "expectError": { + "errorLabelsContain": [ + "RetryableWriteError" + ] + } + } + ], + "expectEvents": [ + { + "client": "client0", + "events": [ + { + "commandStartedEvent": { + "command": { + "insert": "coll", + "documents": [ + { + "_id": 3, + "x": 33 + } + ] + }, + "commandName": "insert", + "databaseName": "retryable-writes-tests" + } + }, + { + "commandStartedEvent": { + "command": { + "insert": "coll", + "documents": [ + { + "_id": 3, + "x": 33 + } + ] + }, + "commandName": "insert", + "databaseName": "retryable-writes-tests" + } + } + ] + } + ], + "outcome": [ + { + "collectionName": "coll", + "databaseName": "retryable-writes-tests", + "documents": [ + { + "_id": 1, + "x": 11 + }, + { + "_id": 2, + "x": 22 + }, + { + "_id": 3, + "x": 33 + } + ] + } + ] + }, + { + "description": "RetryableWriteError label is not added based on writeConcernError in pre-4.4 mongos response", + "runOnRequirements": [ + { + "minServerVersion": "4.2", + "maxServerVersion": "4.2.99", + "topologies": [ + "sharded" + ] + } + ], + "operations": [ + { + "name": "failPoint", + "object": "testRunner", + "arguments": { + "client": "client0", + "failPoint": { + "configureFailPoint": "failCommand", + "mode": { + "times": 1 + }, + "data": { + "failCommands": [ + "insert" + ], + "writeConcernError": { + "code": 91, + "errmsg": "Replication is being shut down" + } + } + } + } + }, + { + "name": "insertOne", + "object": "collection0", + "arguments": { + "document": { + "_id": 3, + "x": 33 + } + }, + "expectError": { + "errorLabelsOmit": [ + "RetryableWriteError" + ] + } + } + ], + "expectEvents": [ + { + "client": "client0", + "events": [ + { + "commandStartedEvent": { + "command": { + "insert": "coll", + "documents": [ + { + "_id": 3, + "x": 33 + } + ] + }, + "commandName": "insert", + "databaseName": "retryable-writes-tests" + } + } + ] + } + ], + "outcome": [ + { + "collectionName": "coll", + "databaseName": "retryable-writes-tests", + "documents": [ + { + "_id": 1, + "x": 11 + }, + { + "_id": 2, + "x": 22 + }, + { + "_id": 3, + "x": 33 + } + ] + } + ] } ] } diff --git a/test/spec/retryable-writes/unified/insertOne-serverErrors.yml b/test/spec/retryable-writes/unified/insertOne-serverErrors.yml index 76f8c4ff85..94205d404b 100644 --- a/test/spec/retryable-writes/unified/insertOne-serverErrors.yml +++ b/test/spec/retryable-writes/unified/insertOne-serverErrors.yml @@ -75,3 +75,123 @@ tests: - { _id: 1, x: 11 } - { _id: 2, x: 22 } - { _id: 3, x: 33 } # The write was still applied + + - description: "RetryableWriteError label is added based on top-level code in pre-4.4 server response" + runOnRequirements: + - minServerVersion: "4.2" + maxServerVersion: "4.2.99" + topologies: [ replicaset, sharded ] + operations: + - name: failPoint + object: testRunner + arguments: + client: *client0 + failPoint: + configureFailPoint: failCommand + # Trigger the fail point twice to allow asserting the error label in + # the retry attempt's response. + mode: { times: 2 } + data: + failCommands: [ "insert" ] + errorCode: 189 # PrimarySteppedDown + - name: insertOne + object: *collection0 + arguments: + document: { _id: 3, x: 33 } + expectError: + errorLabelsContain: [ "RetryableWriteError" ] + expectEvents: + - client: *client0 + events: + - commandStartedEvent: &insertCommandStartedEvent + command: + insert: *collectionName + documents: [{ _id: 3, x: 33 }] + commandName: insert + databaseName: *databaseName + - commandStartedEvent: *insertCommandStartedEvent + outcome: + - collectionName: *collectionName + databaseName: *databaseName + documents: + - { _id: 1, x: 11 } + - { _id: 2, x: 22 } + + - description: "RetryableWriteError label is added based on writeConcernError in pre-4.4 mongod response" + runOnRequirements: + - minServerVersion: "4.2" + maxServerVersion: "4.2.99" + topologies: [ replicaset ] + operations: + - name: failPoint + object: testRunner + arguments: + client: *client0 + failPoint: + configureFailPoint: failCommand + # Trigger the fail point twice to allow asserting the error label in + # the retry attempt's response. + mode: { times: 2 } + data: + failCommands: [ "insert" ] + writeConcernError: + code: 91 # ShutdownInProgress + errmsg: "Replication is being shut down" + - name: insertOne + object: *collection0 + arguments: + document: { _id: 3, x: 33 } + expectError: + errorLabelsContain: [ "RetryableWriteError" ] + expectEvents: + - client: *client0 + events: + - commandStartedEvent: *insertCommandStartedEvent + - commandStartedEvent: *insertCommandStartedEvent + outcome: + - collectionName: *collectionName + databaseName: *databaseName + documents: + - { _id: 1, x: 11 } + - { _id: 2, x: 22 } + # writeConcernError doesn't prevent the server from applying the write + - { _id: 3, x: 33 } + + - description: "RetryableWriteError label is not added based on writeConcernError in pre-4.4 mongos response" + runOnRequirements: + - minServerVersion: "4.2" + maxServerVersion: "4.2.99" + topologies: [ sharded ] + operations: + - name: failPoint + object: testRunner + arguments: + client: *client0 + failPoint: + configureFailPoint: failCommand + # Trigger the fail point only once since a RetryableWriteError label + # will not be added and the write will not be retried. + mode: { times: 1 } + data: + failCommands: [ "insert" ] + writeConcernError: + code: 91 # ShutdownInProgress + errmsg: "Replication is being shut down" + - name: insertOne + object: *collection0 + arguments: + document: { _id: 3, x: 33 } + expectError: + errorLabelsOmit: [ "RetryableWriteError" ] + expectEvents: + - client: *client0 + events: + - commandStartedEvent: *insertCommandStartedEvent + outcome: + - collectionName: *collectionName + databaseName: *databaseName + documents: + - { _id: 1, x: 11 } + - { _id: 2, x: 22 } + # writeConcernError doesn't prevent the server from applying the write + - { _id: 3, x: 33 } From 242c12d5d9c50765a9e099b22596f9b58563da9f Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Mon, 17 Jun 2024 17:18:29 -0400 Subject: [PATCH 02/18] remove stray only --- test/integration/retryable-writes/retryable_writes.spec.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index a29f450e4a..a8e1412584 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -203,6 +203,6 @@ async function turnOffFailPoint(client, name) { }); } -describe.only('Retryable Writes (unified)', function () { +describe('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified'))); }); From a8f67d63132508e55b2b23d882f7678c6b689730 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Tue, 18 Jun 2024 15:56:29 -0400 Subject: [PATCH 03/18] sharded <4.4 support --- src/cmap/connect.ts | 3 ++- src/error.ts | 12 +++++++++--- src/sdam/server.ts | 3 ++- src/sessions.ts | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/cmap/connect.ts b/src/cmap/connect.ts index e319dbbed9..c03e78681d 100644 --- a/src/cmap/connect.ts +++ b/src/cmap/connect.ts @@ -31,6 +31,7 @@ import { MIN_SUPPORTED_SERVER_VERSION, MIN_SUPPORTED_WIRE_VERSION } from './wire_protocol/constants'; +import { isSharded } from './wire_protocol/shared'; /** @public */ export type Stream = Socket | TLSSocket; @@ -164,7 +165,7 @@ export async function performInitialHandshake( } catch (error) { if (error instanceof MongoError) { error.addErrorLabel(MongoErrorLabel.HandshakeError); - if (needsRetryableWriteLabel(error, response.maxWireVersion)) { + if (needsRetryableWriteLabel(error, response.maxWireVersion, isSharded(conn))) { error.addErrorLabel(MongoErrorLabel.RetryableWriteError); } } diff --git a/src/error.ts b/src/error.ts index 066cc1f82a..bd172017fc 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1215,11 +1215,15 @@ const RETRYABLE_READ_ERROR_CODES = new Set([ // see: https://github.com/mongodb/specifications/blob/master/source/retryable-writes/retryable-writes.rst#terms const RETRYABLE_WRITE_ERROR_CODES = RETRYABLE_READ_ERROR_CODES; -export function needsRetryableWriteLabel(error: Error, maxWireVersion: number): boolean { +export function needsRetryableWriteLabel( + error: Error, + maxWireVersion: number, + isSharded: boolean +): boolean { // pre-4.4 server, then the driver adds an error label for every valid case // execute operation will only inspect the label, code/message logic is handled here if (error instanceof MongoNetworkError) { - return true; + return !isSharded; } if (error instanceof MongoError) { @@ -1235,7 +1239,9 @@ export function needsRetryableWriteLabel(error: Error, maxWireVersion: number): } if (error instanceof MongoWriteConcernError) { - return RETRYABLE_WRITE_ERROR_CODES.has(error.result?.code ?? error.code ?? 0); + return isSharded && maxWireVersion < 9 + ? false + : RETRYABLE_WRITE_ERROR_CODES.has(error.result?.code ?? error.code ?? 0); } if (error instanceof MongoError && typeof error.code === 'number') { diff --git a/src/sdam/server.ts b/src/sdam/server.ts index 59a7231b4f..267f325a4a 100644 --- a/src/sdam/server.ts +++ b/src/sdam/server.ts @@ -8,6 +8,7 @@ import { } from '../cmap/connection_pool'; import { PoolClearedError } from '../cmap/errors'; import { type MongoDBResponseConstructor } from '../cmap/wire_protocol/responses'; +import { isSharded } from '../cmap/wire_protocol/shared'; import { APM_EVENTS, CLOSED, @@ -453,7 +454,7 @@ export class Server extends TypedEventEmitter { } else { if ( (isRetryableWritesEnabled(this.topology) || isTransactionCommand(cmd)) && - needsRetryableWriteLabel(error, maxWireVersion(this)) && + needsRetryableWriteLabel(error, maxWireVersion(this), isSharded(this)) && !inActiveTransaction(session, cmd) ) { error.addErrorLabel(MongoErrorLabel.RetryableWriteError); diff --git a/src/sessions.ts b/src/sessions.ts index 544bef897c..a59c00295e 100644 --- a/src/sessions.ts +++ b/src/sessions.ts @@ -391,7 +391,7 @@ export class ClientSession extends TypedEventEmitter { const topologyMaxWireVersion = maxWireVersion(this.client.topology); if ( - isSharded(this.client.topology) && + is(this.client.topology) && topologyMaxWireVersion != null && topologyMaxWireVersion < minWireVersionForShardedTransactions ) { From 41e858773a485a2196fa90ec4f637fd30292a27b Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Tue, 18 Jun 2024 16:50:31 -0400 Subject: [PATCH 04/18] remove typo --- src/sessions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sessions.ts b/src/sessions.ts index a59c00295e..544bef897c 100644 --- a/src/sessions.ts +++ b/src/sessions.ts @@ -391,7 +391,7 @@ export class ClientSession extends TypedEventEmitter { const topologyMaxWireVersion = maxWireVersion(this.client.topology); if ( - is(this.client.topology) && + isSharded(this.client.topology) && topologyMaxWireVersion != null && topologyMaxWireVersion < minWireVersionForShardedTransactions ) { From 96b5c95a6fdaebb94d1ae05d86c0824e13b6c262 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Tue, 18 Jun 2024 17:33:40 -0400 Subject: [PATCH 05/18] bugs fixed? --- src/error.ts | 2 +- test/integration/retryable-writes/retryable_writes.spec.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/error.ts b/src/error.ts index bd172017fc..8de956c4ae 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1223,7 +1223,7 @@ export function needsRetryableWriteLabel( // pre-4.4 server, then the driver adds an error label for every valid case // execute operation will only inspect the label, code/message logic is handled here if (error instanceof MongoNetworkError) { - return !isSharded; + return true; } if (error instanceof MongoError) { diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index a8e1412584..a29f450e4a 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -203,6 +203,6 @@ async function turnOffFailPoint(client, name) { }); } -describe('Retryable Writes (unified)', function () { +describe.only('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified'))); }); From dcef868267f1a39b3373f055d5904f8ce1dbbe56 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Tue, 18 Jun 2024 17:37:51 -0400 Subject: [PATCH 06/18] remove stray only --- test/integration/retryable-writes/retryable_writes.spec.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index a29f450e4a..a8e1412584 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -203,6 +203,6 @@ async function turnOffFailPoint(client, name) { }); } -describe.only('Retryable Writes (unified)', function () { +describe('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified'))); }); From f468ae477eb947d54c3b261622b35df063308b42 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Thu, 20 Jun 2024 15:18:58 -0400 Subject: [PATCH 07/18] skip outdated tests --- .../retryable_writes.spec.test.ts | 42 +++++++++++++++---- 1 file changed, 34 insertions(+), 8 deletions(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index a8e1412584..67c34531eb 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -19,6 +19,22 @@ describe('Legacy Retryable Writes Specs', function () { const retryableWrites = loadSpecTests('retryable-writes', 'legacy'); + const LEGACY_SKIP_TESTS_4_4_SHARDED = [ + 'BulkWrite succeeds after WriteConcernError ShutdownInProgress', + 'DeleteOne succeeds after WriteConcernError ShutdownInProgress', + 'FindOneAndDelete succeeds after WriteConcernError ShutdownInProgress', + 'FindOneAndReplace succeeds after WriteConcernError ShutdownInProgress', + 'FindOneAndUpdate succeeds after WriteConcernError ShutdownInProgress', + 'InsertMany succeeds after WriteConcernError ShutdownInProgress', + 'InsertOne succeeds after WriteConcernError InterruptedAtShutdown', + 'InsertOne succeeds after WriteConcernError InterruptedDueToReplStateChange', + 'InsertOne succeeds after WriteConcernError PrimarySteppedDown', + 'InsertOne succeeds after WriteConcernError ShutdownInProgress', + 'InsertOne fails after multiple retryable writeConcernErrors', + 'ReplaceOne succeeds after WriteConcernError ShutdownInProgress', + 'UpdateOne succeeds after WriteConcernError ShutdownInProgress' + ]; + for (const suite of retryableWrites) { describe(suite.name, function () { beforeEach(async function () { @@ -65,14 +81,24 @@ describe('Legacy Retryable Writes Specs', function () { }); for (const spec of suite.tests) { - // Step 2: Run the test - const mochaTest = it(spec.description, async () => await executeScenarioTest(spec, ctx)); - - // A pattern we don't need to repeat for unified tests - // In order to give the beforeEach hook access to the - // spec test so it can be responsible for skipping it - // and executeScenarioSetup - mochaTest.spec = spec; + if ( + LEGACY_SKIP_TESTS_4_4_SHARDED.includes(spec.description) && + this.ctx.topologyType === 'Sharded' && + Number(this.ctx.version) <= 4.4 + ) { + this.ctx.skipReason = + 'drivers should not consider the code within the writeConcernError field from a pre-4.4 mongos response'; + this.ctx.skip(); + } else { + // Step 2: Run the test + const mochaTest = it(spec.description, async () => await executeScenarioTest(spec, ctx)); + + // A pattern we don't need to repeat for unified tests + // In order to give the beforeEach hook access to the + // spec test so it can be responsible for skipping it + // and executeScenarioSetup + mochaTest.spec = spec; + } } }); } From b22466e3aa939c2038969d193fbdc7504e638218 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Fri, 28 Jun 2024 17:03:41 -0400 Subject: [PATCH 08/18] skip tests --- .../retryable-writes/retryable_writes.spec.test.ts | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 67c34531eb..28f7e60dc8 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -14,7 +14,7 @@ interface RetryableWriteTestContext { failPointName?: any; } -describe('Legacy Retryable Writes Specs', function () { +describe.only('Legacy Retryable Writes Specs', function () { let ctx: RetryableWriteTestContext = {}; const retryableWrites = loadSpecTests('retryable-writes', 'legacy'); @@ -79,17 +79,8 @@ describe('Legacy Retryable Writes Specs', function () { await ctx.client.close(); ctx = {}; // reset context }); - for (const spec of suite.tests) { - if ( - LEGACY_SKIP_TESTS_4_4_SHARDED.includes(spec.description) && - this.ctx.topologyType === 'Sharded' && - Number(this.ctx.version) <= 4.4 - ) { - this.ctx.skipReason = - 'drivers should not consider the code within the writeConcernError field from a pre-4.4 mongos response'; - this.ctx.skip(); - } else { + if (!LEGACY_SKIP_TESTS_4_4_SHARDED.includes(spec.description)) { // Step 2: Run the test const mochaTest = it(spec.description, async () => await executeScenarioTest(spec, ctx)); From 9eb063ef756aef13f2774d3b06d188444ed6dacf Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Fri, 28 Jun 2024 17:05:43 -0400 Subject: [PATCH 09/18] remove stray only --- test/integration/retryable-writes/retryable_writes.spec.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 28f7e60dc8..941455c8dd 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -14,7 +14,7 @@ interface RetryableWriteTestContext { failPointName?: any; } -describe.only('Legacy Retryable Writes Specs', function () { +describe('Legacy Retryable Writes Specs', function () { let ctx: RetryableWriteTestContext = {}; const retryableWrites = loadSpecTests('retryable-writes', 'legacy'); From e7037e924efd551b97141fb10d3f11537bbbe914 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Tue, 9 Jul 2024 15:33:55 -0400 Subject: [PATCH 10/18] skip tests with comment --- .../retryable-writes/retryable_writes.spec.test.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 941455c8dd..19435ea311 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -1,5 +1,6 @@ import { expect } from 'chai'; import * as path from 'path'; +import { lt } from 'semver'; import type { Collection, Db, MongoClient } from '../../mongodb'; import { loadSpecTests } from '../../spec'; @@ -14,7 +15,7 @@ interface RetryableWriteTestContext { failPointName?: any; } -describe('Legacy Retryable Writes Specs', function () { +describe.only('Legacy Retryable Writes Specs', function () { let ctx: RetryableWriteTestContext = {}; const retryableWrites = loadSpecTests('retryable-writes', 'legacy'); @@ -56,6 +57,14 @@ describe('Legacy Retryable Writes Specs', function () { await utilClient.close(); + if ( + this.configuration.topologyType === 'Sharded' && + lt(this.configuration.version, '4.4.0') + ) { + // 'TODO(NODE-5925): will be resolved when driver migrates to unified tests + this.skip(); + } + if (!someRequirementMet) this.skip(); }); @@ -220,6 +229,6 @@ async function turnOffFailPoint(client, name) { }); } -describe('Retryable Writes (unified)', function () { +describe.only('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified'))); }); From ad5b1502e582bce3de079c02dda36e89f95b21a5 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Tue, 9 Jul 2024 15:41:19 -0400 Subject: [PATCH 11/18] remove stray only clear up logic lint fix clean up lint fix 2 --- src/cmap/connect.ts | 3 +-- src/error.ts | 9 +++++---- src/sdam/server.ts | 3 +-- .../retryable-writes/retryable_writes.spec.test.ts | 4 ++-- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/cmap/connect.ts b/src/cmap/connect.ts index c03e78681d..58c3519fed 100644 --- a/src/cmap/connect.ts +++ b/src/cmap/connect.ts @@ -31,7 +31,6 @@ import { MIN_SUPPORTED_SERVER_VERSION, MIN_SUPPORTED_WIRE_VERSION } from './wire_protocol/constants'; -import { isSharded } from './wire_protocol/shared'; /** @public */ export type Stream = Socket | TLSSocket; @@ -165,7 +164,7 @@ export async function performInitialHandshake( } catch (error) { if (error instanceof MongoError) { error.addErrorLabel(MongoErrorLabel.HandshakeError); - if (needsRetryableWriteLabel(error, response.maxWireVersion, isSharded(conn))) { + if (needsRetryableWriteLabel(error, response.maxWireVersion, conn.description.type)) { error.addErrorLabel(MongoErrorLabel.RetryableWriteError); } } diff --git a/src/error.ts b/src/error.ts index 623e572a69..2b304c3ea6 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1,4 +1,5 @@ import type { Document } from './bson'; +import type { ServerType } from './sdam/common'; import type { TopologyVersion } from './sdam/server_description'; import type { TopologyDescription } from './sdam/topology_description'; @@ -1220,7 +1221,7 @@ const RETRYABLE_WRITE_ERROR_CODES = RETRYABLE_READ_ERROR_CODES; export function needsRetryableWriteLabel( error: Error, maxWireVersion: number, - isSharded: boolean + serverType: ServerType ): boolean { // pre-4.4 server, then the driver adds an error label for every valid case // execute operation will only inspect the label, code/message logic is handled here @@ -1241,13 +1242,13 @@ export function needsRetryableWriteLabel( } if (error instanceof MongoWriteConcernError) { - return isSharded && maxWireVersion < 9 + return serverType === 'Mongos' && maxWireVersion < 9 ? false - : RETRYABLE_WRITE_ERROR_CODES.has(error.result?.code ?? error.code ?? 0); + : RETRYABLE_WRITE_ERROR_CODES.has(error.result?.code ?? Number(error.code) ?? 0); } if (error instanceof MongoError && typeof error.code === 'number') { - return RETRYABLE_WRITE_ERROR_CODES.has(error.code); + return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.code)); } const isNotWritablePrimaryError = LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(error.message); diff --git a/src/sdam/server.ts b/src/sdam/server.ts index 267f325a4a..b4450f0072 100644 --- a/src/sdam/server.ts +++ b/src/sdam/server.ts @@ -8,7 +8,6 @@ import { } from '../cmap/connection_pool'; import { PoolClearedError } from '../cmap/errors'; import { type MongoDBResponseConstructor } from '../cmap/wire_protocol/responses'; -import { isSharded } from '../cmap/wire_protocol/shared'; import { APM_EVENTS, CLOSED, @@ -454,7 +453,7 @@ export class Server extends TypedEventEmitter { } else { if ( (isRetryableWritesEnabled(this.topology) || isTransactionCommand(cmd)) && - needsRetryableWriteLabel(error, maxWireVersion(this), isSharded(this)) && + needsRetryableWriteLabel(error, maxWireVersion(this), this.description.type) && !inActiveTransaction(session, cmd) ) { error.addErrorLabel(MongoErrorLabel.RetryableWriteError); diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 19435ea311..1fa7dc455f 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -15,7 +15,7 @@ interface RetryableWriteTestContext { failPointName?: any; } -describe.only('Legacy Retryable Writes Specs', function () { +describe('Legacy Retryable Writes Specs', function () { let ctx: RetryableWriteTestContext = {}; const retryableWrites = loadSpecTests('retryable-writes', 'legacy'); @@ -229,6 +229,6 @@ async function turnOffFailPoint(client, name) { }); } -describe.only('Retryable Writes (unified)', function () { +describe('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified'))); }); From 60ad9ac95cd4a7b2b9a268500625be6eec3884ee Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Wed, 10 Jul 2024 12:51:21 -0400 Subject: [PATCH 12/18] fix logic --- .../retryable_writes.spec.test.ts | 35 +++++++++---------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 1fa7dc455f..680bd7a96f 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -57,14 +57,6 @@ describe('Legacy Retryable Writes Specs', function () { await utilClient.close(); - if ( - this.configuration.topologyType === 'Sharded' && - lt(this.configuration.version, '4.4.0') - ) { - // 'TODO(NODE-5925): will be resolved when driver migrates to unified tests - this.skip(); - } - if (!someRequirementMet) this.skip(); }); @@ -73,6 +65,15 @@ describe('Legacy Retryable Writes Specs', function () { // like creating a client, dropping and refilling data collections, // and enabling failpoints const { spec } = this.currentTest; + if ( + this.configuration.topologyType === 'Sharded' && + lt(this.configuration.version, '4.4.0') && + LEGACY_SKIP_TESTS_4_4_SHARDED.includes(spec.description) + ) { + this.currentTest.skipReason = + 'TODO(NODE-5925): will be resolved when driver migrates to unified tests'; + this.skip(); + } await executeScenarioSetup(suite, spec, this.configuration, ctx); }); @@ -89,16 +90,14 @@ describe('Legacy Retryable Writes Specs', function () { ctx = {}; // reset context }); for (const spec of suite.tests) { - if (!LEGACY_SKIP_TESTS_4_4_SHARDED.includes(spec.description)) { - // Step 2: Run the test - const mochaTest = it(spec.description, async () => await executeScenarioTest(spec, ctx)); - - // A pattern we don't need to repeat for unified tests - // In order to give the beforeEach hook access to the - // spec test so it can be responsible for skipping it - // and executeScenarioSetup - mochaTest.spec = spec; - } + // Step 2: Run the test + const mochaTest = it(spec.description, async () => await executeScenarioTest(spec, ctx)); + + // A pattern we don't need to repeat for unified tests + // In order to give the beforeEach hook access to the + // spec test so it can be responsible for skipping it + // and executeScenarioSetup + mochaTest.spec = spec; } }); } From 985dc03e58aadd9123dd2b19cc2cc97d69dd5ea7 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Thu, 11 Jul 2024 13:04:22 -0400 Subject: [PATCH 13/18] changes to consider top-level code, doesnt pass tests --- 53242.0x/flamegraph.html | 13952 +++++++ ...solate-0x138008000-53242-53242-v8.log.json | 32476 ++++++++++++++++ ...008000-53242-53242-v8.log.preprocess-ready | 3218 ++ 53242.0x/meta.json | 1 + results.json | 282 + src/error.ts | 8 +- .../retryable_writes.spec.test.ts | 26 +- 7 files changed, 49946 insertions(+), 17 deletions(-) create mode 100644 53242.0x/flamegraph.html create mode 100644 53242.0x/isolate-0x138008000-53242-53242-v8.log.json create mode 100644 53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready create mode 100644 53242.0x/meta.json create mode 100644 results.json diff --git a/53242.0x/flamegraph.html b/53242.0x/flamegraph.html new file mode 100644 index 0000000000..e13ab8bf7a --- /dev/null +++ b/53242.0x/flamegraph.html @@ -0,0 +1,13952 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/53242.0x/isolate-0x138008000-53242-53242-v8.log.json b/53242.0x/isolate-0x138008000-53242-53242-v8.log.json new file mode 100644 index 0000000000..f559f13805 --- /dev/null +++ b/53242.0x/isolate-0x138008000-53242-53242-v8.log.json @@ -0,0 +1,32476 @@ +{ + "code": [ + { + "name": "/Users/aditi.khare/.local/share/nvm/v20.10.0/bin/node", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libobjc.A.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/liboah.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libfakelink.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libicucore.A.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libSystem.B.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libc++abi.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libc++.1.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libcache.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libcommonCrypto.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libcompiler_rt.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libcopyfile.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libcorecrypto.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libdispatch.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libdyld.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libkeymgr.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libmacho.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libquarantine.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libremovefile.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_asl.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_blocks.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_c.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_collections.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_configuration.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_containermanager.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_coreservices.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_darwin.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_darwindirectory.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_dnssd.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_eligibility.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_featureflags.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_info.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_m.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_malloc.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_networkextension.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_notify.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_sandbox.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_sanitizers.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_secinit.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_kernel.dylib", + "type": "SHARED_LIB" + }, + { + "name": "T _kdebug_is_enabled", + "type": "CPP" + }, + { + "name": "T _kdebug_typefilter", + "type": "CPP" + }, + { + "name": "T _kdebug_trace", + "type": "CPP" + }, + { + "name": "T _issetugid", + "type": "CPP" + }, + { + "name": "T _mach_vm_map", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_allocate_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_purgable_control_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_deallocate_trap", + "type": "CPP" + }, + { + "name": "T _task_dyld_process_info_notify_get", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_protect_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_map_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_allocate_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_deallocate_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_mod_refs_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_move_member_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_insert_right_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_insert_member_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_extract_member_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_construct_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_destruct_trap", + "type": "CPP" + }, + { + "name": "T _mach_reply_port", + "type": "CPP" + }, + { + "name": "T _thread_self_trap", + "type": "CPP" + }, + { + "name": "T _task_self_trap", + "type": "CPP" + }, + { + "name": "T _host_self_trap", + "type": "CPP" + }, + { + "name": "T _mach_msg_trap", + "type": "CPP" + }, + { + "name": "T _mach_msg_overwrite_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_signal_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_signal_all_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_signal_thread_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_wait_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_wait_signal_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_timedwait_trap", + "type": "CPP" + }, + { + "name": "T _semaphore_timedwait_signal_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_attributes_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_guard_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_unguard_trap", + "type": "CPP" + }, + { + "name": "T _mach_generate_activity_id", + "type": "CPP" + }, + { + "name": "T _task_name_for_pid", + "type": "CPP" + }, + { + "name": "T _task_for_pid", + "type": "CPP" + }, + { + "name": "T _pid_for_task", + "type": "CPP" + }, + { + "name": "T _mach_msg2_trap", + "type": "CPP" + }, + { + "name": "T _macx_swapon", + "type": "CPP" + }, + { + "name": "T _macx_swapoff", + "type": "CPP" + }, + { + "name": "T _thread_get_special_reply_port", + "type": "CPP" + }, + { + "name": "T _macx_triggers", + "type": "CPP" + }, + { + "name": "T _macx_backing_store_suspend", + "type": "CPP" + }, + { + "name": "T _macx_backing_store_recovery", + "type": "CPP" + }, + { + "name": "T _swtch_pri", + "type": "CPP" + }, + { + "name": "T _swtch", + "type": "CPP" + }, + { + "name": "T _syscall_thread_switch", + "type": "CPP" + }, + { + "name": "T _clock_sleep_trap", + "type": "CPP" + }, + { + "name": "T _host_create_mach_voucher_trap", + "type": "CPP" + }, + { + "name": "T _mach_voucher_extract_attr_recipe_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_type_trap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_request_notification_trap", + "type": "CPP" + }, + { + "name": "T __exclaves_ctl_trap", + "type": "CPP" + }, + { + "name": "T _mach_timebase_info_trap", + "type": "CPP" + }, + { + "name": "T _mach_wait_until", + "type": "CPP" + }, + { + "name": "T _mk_timer_create", + "type": "CPP" + }, + { + "name": "T _mk_timer_destroy", + "type": "CPP" + }, + { + "name": "T _mk_timer_arm", + "type": "CPP" + }, + { + "name": "T _mk_timer_cancel", + "type": "CPP" + }, + { + "name": "T _mk_timer_arm_leeway", + "type": "CPP" + }, + { + "name": "T _debug_control_port_for_pid", + "type": "CPP" + }, + { + "name": "T _task_restartable_ranges_register", + "type": "CPP" + }, + { + "name": "t _memcpy", + "type": "CPP" + }, + { + "name": "T _mig_get_reply_port", + "type": "CPP" + }, + { + "name": "T _mach_msg", + "type": "CPP" + }, + { + "name": "T _mach_timebase_info", + "type": "CPP" + }, + { + "name": "T _mach_continuous_time", + "type": "CPP" + }, + { + "name": "T _mach_absolute_time", + "type": "CPP" + }, + { + "name": "T _mach_absolute_time_kernel", + "type": "CPP" + }, + { + "name": "T _mach_continuous_time_kernel", + "type": "CPP" + }, + { + "name": "T _getentropy", + "type": "CPP" + }, + { + "name": "T ___libkernel_voucher_init", + "type": "CPP" + }, + { + "name": "T _getpid", + "type": "CPP" + }, + { + "name": "T _task_get_special_port", + "type": "CPP" + }, + { + "name": "T _mach_port_mod_refs", + "type": "CPP" + }, + { + "name": "T _task_info", + "type": "CPP" + }, + { + "name": "T _csops_audittoken", + "type": "CPP" + }, + { + "name": "T _cerror_nocancel", + "type": "CPP" + }, + { + "name": "T ___error", + "type": "CPP" + }, + { + "name": "T _getattrlist", + "type": "CPP" + }, + { + "name": "T _access", + "type": "CPP" + }, + { + "name": "T ___open", + "type": "CPP" + }, + { + "name": "T _csr_check", + "type": "CPP" + }, + { + "name": "T ___csrctl", + "type": "CPP" + }, + { + "name": "T _fcntl", + "type": "CPP" + }, + { + "name": "T ___fcntl", + "type": "CPP" + }, + { + "name": "T _close", + "type": "CPP" + }, + { + "name": "T _read", + "type": "CPP" + }, + { + "name": "T ___open_nocancel", + "type": "CPP" + }, + { + "name": "T _mmap", + "type": "CPP" + }, + { + "name": "T ___mmap", + "type": "CPP" + }, + { + "name": "T _voucher_mach_msg_set", + "type": "CPP" + }, + { + "name": "T _mach_host_self", + "type": "CPP" + }, + { + "name": "T _host_get_special_port", + "type": "CPP" + }, + { + "name": "T _mach_msg_destroy", + "type": "CPP" + }, + { + "name": "t _mach_msg_destroy_port", + "type": "CPP" + }, + { + "name": "T _host_create_mach_voucher", + "type": "CPP" + }, + { + "name": "T _voucher_mach_msg_clear", + "type": "CPP" + }, + { + "name": "T _mach_port_construct", + "type": "CPP" + }, + { + "name": "T _task_set_special_port", + "type": "CPP" + }, + { + "name": "T _geteuid", + "type": "CPP" + }, + { + "name": "T _mach_port_deallocate", + "type": "CPP" + }, + { + "name": "T _proc_pidinfo", + "type": "CPP" + }, + { + "name": "T ___proc_info", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_map", + "type": "CPP" + }, + { + "name": "T _mach_make_memory_entry_64", + "type": "CPP" + }, + { + "name": "T ___sysctl", + "type": "CPP" + }, + { + "name": "T _mach_approximate_time", + "type": "CPP" + }, + { + "name": "T _mig_get_special_reply_port", + "type": "CPP" + }, + { + "name": "T _mig_strncpy_zerofill", + "type": "CPP" + }, + { + "name": "T ___shm_open", + "type": "CPP" + }, + { + "name": "T _close$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___openat", + "type": "CPP" + }, + { + "name": "T _cerror", + "type": "CPP" + }, + { + "name": "T _lseek", + "type": "CPP" + }, + { + "name": "T _pread", + "type": "CPP" + }, + { + "name": "T _mach_voucher_deallocate", + "type": "CPP" + }, + { + "name": "T ___sysctlbyname", + "type": "CPP" + }, + { + "name": "T _mach_port_destruct", + "type": "CPP" + }, + { + "name": "T ___sandbox_ms", + "type": "CPP" + }, + { + "name": "T _chdir", + "type": "CPP" + }, + { + "name": "T _mkdir", + "type": "CPP" + }, + { + "name": "T _mach_vm_deallocate", + "type": "CPP" + }, + { + "name": "T _getuid", + "type": "CPP" + }, + { + "name": "T _pthread_getugid_np", + "type": "CPP" + }, + { + "name": "T _getegid", + "type": "CPP" + }, + { + "name": "T _csops", + "type": "CPP" + }, + { + "name": "T _proc_pidpath", + "type": "CPP" + }, + { + "name": "T ___getdirentries64", + "type": "CPP" + }, + { + "name": "T ___workq_kernreturn", + "type": "CPP" + }, + { + "name": "T ___workq_open", + "type": "CPP" + }, + { + "name": "T _kevent_qos", + "type": "CPP" + }, + { + "name": "T _kevent_id", + "type": "CPP" + }, + { + "name": "T ___bsdthread_ctl", + "type": "CPP" + }, + { + "name": "T ___thread_selfid", + "type": "CPP" + }, + { + "name": "T ___ulock_wait", + "type": "CPP" + }, + { + "name": "T _mach_port_request_notification", + "type": "CPP" + }, + { + "name": "T ___ulock_wake", + "type": "CPP" + }, + { + "name": "T ___commpage_gettimeofday", + "type": "CPP" + }, + { + "name": "t ___commpage_gettimeofday_internal", + "type": "CPP" + }, + { + "name": "T _read$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _mach_get_times", + "type": "CPP" + }, + { + "name": "T _host_request_notification", + "type": "CPP" + }, + { + "name": "T _mach_port_allocate", + "type": "CPP" + }, + { + "name": "T _mach_port_insert_member", + "type": "CPP" + }, + { + "name": "T _vm_allocate", + "type": "CPP" + }, + { + "name": "T _mach_vm_allocate", + "type": "CPP" + }, + { + "name": "T _vm_deallocate", + "type": "CPP" + }, + { + "name": "T _getrlimit", + "type": "CPP" + }, + { + "name": "T ___getrlimit", + "type": "CPP" + }, + { + "name": "T _getaudit_addr", + "type": "CPP" + }, + { + "name": "T _syscall", + "type": "CPP" + }, + { + "name": "T _readlink", + "type": "CPP" + }, + { + "name": "T _mach_port_insert_right", + "type": "CPP" + }, + { + "name": "T _proc_setpcontrol", + "type": "CPP" + }, + { + "name": "T _vm_remap", + "type": "CPP" + }, + { + "name": "T __kernelrpc_vm_remap", + "type": "CPP" + }, + { + "name": "T _task_policy_set", + "type": "CPP" + }, + { + "name": "T _mach_voucher_extract_attr_recipe", + "type": "CPP" + }, + { + "name": "T _mach_port_get_attributes", + "type": "CPP" + }, + { + "name": "T _mach_port_set_attributes", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_set_attributes", + "type": "CPP" + }, + { + "name": "T _kdebug_trace_string", + "type": "CPP" + }, + { + "name": "T ___kdebug_trace64", + "type": "CPP" + }, + { + "name": "T _mach_port_type", + "type": "CPP" + }, + { + "name": "T _posix_madvise", + "type": "CPP" + }, + { + "name": "T ___psynch_mutexwait", + "type": "CPP" + }, + { + "name": "T _setrlimit", + "type": "CPP" + }, + { + "name": "T ___setrlimit", + "type": "CPP" + }, + { + "name": "T _task_restartable_ranges_synchronize", + "type": "CPP" + }, + { + "name": "T ___disable_threadsignal", + "type": "CPP" + }, + { + "name": "T ___bsdthread_terminate", + "type": "CPP" + }, + { + "name": "T ___psynch_mutexdrop", + "type": "CPP" + }, + { + "name": "T _mach_port_guard", + "type": "CPP" + }, + { + "name": "T _semaphore_create", + "type": "CPP" + }, + { + "name": "T _semaphore_wait", + "type": "CPP" + }, + { + "name": "T _semaphore_signal", + "type": "CPP" + }, + { + "name": "T _vm_copy", + "type": "CPP" + }, + { + "name": "T _getxattr", + "type": "CPP" + }, + { + "name": "T _thread_destruct_special_reply_port", + "type": "CPP" + }, + { + "name": "T _mig_dealloc_reply_port", + "type": "CPP" + }, + { + "name": "T _semaphore_destroy", + "type": "CPP" + }, + { + "name": "T _proc_track_dirty", + "type": "CPP" + }, + { + "name": "T _proc_set_dirty", + "type": "CPP" + }, + { + "name": "T _mach_port_get_refs", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_refs", + "type": "CPP" + }, + { + "name": "T ___semwait_signal", + "type": "CPP" + }, + { + "name": "T _voucher_mach_msg_revert", + "type": "CPP" + }, + { + "name": "T _voucher_mach_msg_adopt", + "type": "CPP" + }, + { + "name": "T _mach_port_extract_member", + "type": "CPP" + }, + { + "name": "T _sigprocmask", + "type": "CPP" + }, + { + "name": "T ___sigaltstack", + "type": "CPP" + }, + { + "name": "T _pwrite", + "type": "CPP" + }, + { + "name": "T _ftruncate", + "type": "CPP" + }, + { + "name": "T _setattrlist", + "type": "CPP" + }, + { + "name": "T _getattrlistbulk", + "type": "CPP" + }, + { + "name": "T _listxattr", + "type": "CPP" + }, + { + "name": "T ___psynch_cvwait", + "type": "CPP" + }, + { + "name": "T ___psynch_cvbroad", + "type": "CPP" + }, + { + "name": "T _guarded_open_np", + "type": "CPP" + }, + { + "name": "T ___guarded_open_np", + "type": "CPP" + }, + { + "name": "T _guarded_pwrite_np", + "type": "CPP" + }, + { + "name": "T _vm_purgable_control", + "type": "CPP" + }, + { + "name": "T _mach_vm_purgable_control", + "type": "CPP" + }, + { + "name": "T _fsctl", + "type": "CPP" + }, + { + "name": "T _fgetattrlist", + "type": "CPP" + }, + { + "name": "T _munmap", + "type": "CPP" + }, + { + "name": "T ___munmap", + "type": "CPP" + }, + { + "name": "T _fsgetpath", + "type": "CPP" + }, + { + "name": "T _setxattr", + "type": "CPP" + }, + { + "name": "T _mkdirat", + "type": "CPP" + }, + { + "name": "T _guarded_close_np", + "type": "CPP" + }, + { + "name": "T _fsync", + "type": "CPP" + }, + { + "name": "T _host_get_io_master", + "type": "CPP" + }, + { + "name": "T _write", + "type": "CPP" + }, + { + "name": "T _rename", + "type": "CPP" + }, + { + "name": "T ___rename", + "type": "CPP" + }, + { + "name": "T ___inc_remove_counter", + "type": "CPP" + }, + { + "name": "T _rmdir", + "type": "CPP" + }, + { + "name": "T ___rmdir", + "type": "CPP" + }, + { + "name": "T _chmod", + "type": "CPP" + }, + { + "name": "T ___chmod", + "type": "CPP" + }, + { + "name": "T _mach_vm_protect", + "type": "CPP" + }, + { + "name": "T ___bsdthread_create", + "type": "CPP" + }, + { + "name": "T _mprotect", + "type": "CPP" + }, + { + "name": "t ___gettimeofday_with_mach", + "type": "CPP" + }, + { + "name": "T ___gettimeofday", + "type": "CPP" + }, + { + "name": "T _writev", + "type": "CPP" + }, + { + "name": "T ___psynch_cvclrprepost", + "type": "CPP" + }, + { + "name": "T _write$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _kpersona_info", + "type": "CPP" + }, + { + "name": "T ___persona", + "type": "CPP" + }, + { + "name": "T _unlink", + "type": "CPP" + }, + { + "name": "T ___unlink", + "type": "CPP" + }, + { + "name": "T _flock", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_request_notification", + "type": "CPP" + }, + { + "name": "T _necp_open", + "type": "CPP" + }, + { + "name": "T _change_fdguard_np", + "type": "CPP" + }, + { + "name": "T _necp_client_action", + "type": "CPP" + }, + { + "name": "T _kpersona_get", + "type": "CPP" + }, + { + "name": "T _getgid", + "type": "CPP" + }, + { + "name": "T _audit_session_self", + "type": "CPP" + }, + { + "name": "T _socket", + "type": "CPP" + }, + { + "name": "T _fcntl$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___fcntl_nocancel", + "type": "CPP" + }, + { + "name": "T _setsockopt", + "type": "CPP" + }, + { + "name": "T _connect$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _sendto$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _select$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _select$DARWIN_EXTSN$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _recvfrom$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _socketpair", + "type": "CPP" + }, + { + "name": "T _sendmsg$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _ioctl", + "type": "CPP" + }, + { + "name": "T ___ioctl", + "type": "CPP" + }, + { + "name": "T _connect", + "type": "CPP" + }, + { + "name": "T _sendto", + "type": "CPP" + }, + { + "name": "T _recvfrom", + "type": "CPP" + }, + { + "name": "T _connectx", + "type": "CPP" + }, + { + "name": "T _getsockopt", + "type": "CPP" + }, + { + "name": "T _shutdown", + "type": "CPP" + }, + { + "name": "T _fgetxattr", + "type": "CPP" + }, + { + "name": "T _dup", + "type": "CPP" + }, + { + "name": "T _select", + "type": "CPP" + }, + { + "name": "T _getpeername", + "type": "CPP" + }, + { + "name": "T _fchmod", + "type": "CPP" + }, + { + "name": "T ___fchmod", + "type": "CPP" + }, + { + "name": "T _getiopolicy_np", + "type": "CPP" + }, + { + "name": "T ___iopolicysys", + "type": "CPP" + }, + { + "name": "T _mach_msg_send", + "type": "CPP" + }, + { + "name": "T _link", + "type": "CPP" + }, + { + "name": "T _mach_right_send_release", + "type": "CPP" + }, + { + "name": "T _vm_protect", + "type": "CPP" + }, + { + "name": "T _recvmsg", + "type": "CPP" + }, + { + "name": "T _mig_reply_setup", + "type": "CPP" + }, + { + "name": "T _mach_vm_region", + "type": "CPP" + }, + { + "name": "T _semaphore_timedwait", + "type": "CPP" + }, + { + "name": "T ___psynch_cvsignal", + "type": "CPP" + }, + { + "name": "T _mach_voucher_attr_command", + "type": "CPP" + }, + { + "name": "T _removexattr", + "type": "CPP" + }, + { + "name": "T _clonefileat", + "type": "CPP" + }, + { + "name": "T _host_info", + "type": "CPP" + }, + { + "name": "T _mach_port_move_member", + "type": "CPP" + }, + { + "name": "T _thread_policy", + "type": "CPP" + }, + { + "name": "T __kernelrpc_thread_policy", + "type": "CPP" + }, + { + "name": "T _mig_put_reply_port", + "type": "CPP" + }, + { + "name": "T _mig_strncpy", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_wrlock", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_unlock", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_rdlock", + "type": "CPP" + }, + { + "name": "T _fsetxattr", + "type": "CPP" + }, + { + "name": "T _mach_port_get_context", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_context", + "type": "CPP" + }, + { + "name": "T _fchflags", + "type": "CPP" + }, + { + "name": "T _futimes", + "type": "CPP" + }, + { + "name": "T _umask", + "type": "CPP" + }, + { + "name": "T _utimes", + "type": "CPP" + }, + { + "name": "T _thread_switch", + "type": "CPP" + }, + { + "name": "T _clock_get_time", + "type": "CPP" + }, + { + "name": "T _mach_port_destroy", + "type": "CPP" + }, + { + "name": "T _gethostuuid", + "type": "CPP" + }, + { + "name": "T ___gethostuuid", + "type": "CPP" + }, + { + "name": "T ___stat64_extended", + "type": "CPP" + }, + { + "name": "T ___chmod_extended", + "type": "CPP" + }, + { + "name": "T ___lstat64_extended", + "type": "CPP" + }, + { + "name": "T _open_dprotected_np", + "type": "CPP" + }, + { + "name": "T ___open_dprotected_np", + "type": "CPP" + }, + { + "name": "T ___fstat64_extended", + "type": "CPP" + }, + { + "name": "T ___fchmod_extended", + "type": "CPP" + }, + { + "name": "T _fsetattrlist", + "type": "CPP" + }, + { + "name": "T _fchown", + "type": "CPP" + }, + { + "name": "T _getgroups", + "type": "CPP" + }, + { + "name": "T _lchown", + "type": "CPP" + }, + { + "name": "T _symlink", + "type": "CPP" + }, + { + "name": "T ___openat_nocancel", + "type": "CPP" + }, + { + "name": "T _sendmsg", + "type": "CPP" + }, + { + "name": "T _mig_deallocate", + "type": "CPP" + }, + { + "name": "T ___kdebug_typefilter", + "type": "CPP" + }, + { + "name": "T ___libkernel_init", + "type": "CPP" + }, + { + "name": "T _mach_init", + "type": "CPP" + }, + { + "name": "t _mach_init_doit", + "type": "CPP" + }, + { + "name": "T __init_cpu_capabilities", + "type": "CPP" + }, + { + "name": "T __get_cpu_capabilities", + "type": "CPP" + }, + { + "name": "t __libkernel_strcmp", + "type": "CPP" + }, + { + "name": "T ___libkernel_platform_init", + "type": "CPP" + }, + { + "name": "T _mach_thread_self", + "type": "CPP" + }, + { + "name": "T ___bsdthread_register", + "type": "CPP" + }, + { + "name": "T _host_get_clock_service", + "type": "CPP" + }, + { + "name": "T _proc_name", + "type": "CPP" + }, + { + "name": "T _kqueue", + "type": "CPP" + }, + { + "name": "T _kevent", + "type": "CPP" + }, + { + "name": "T _pselect$DARWIN_EXTSN", + "type": "CPP" + }, + { + "name": "T ___pselect", + "type": "CPP" + }, + { + "name": "T _quotactl", + "type": "CPP" + }, + { + "name": "T _fileport_makefd", + "type": "CPP" + }, + { + "name": "T _thread_policy_set", + "type": "CPP" + }, + { + "name": "T __kernelrpc_thread_policy_set", + "type": "CPP" + }, + { + "name": "T _msync", + "type": "CPP" + }, + { + "name": "T _pipe", + "type": "CPP" + }, + { + "name": "T _fileport_makeport", + "type": "CPP" + }, + { + "name": "T ___kqueue_workloop_ctl", + "type": "CPP" + }, + { + "name": "T ___sigaction", + "type": "CPP" + }, + { + "name": "T _getppid", + "type": "CPP" + }, + { + "name": "T _thread_set_exception_ports", + "type": "CPP" + }, + { + "name": "T _mach_error_string", + "type": "CPP" + }, + { + "name": "t _mach_error_string_int", + "type": "CPP" + }, + { + "name": "t _do_compat", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_init", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_adddup2", + "type": "CPP" + }, + { + "name": "t __posix_spawn_file_actions_grow", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_init", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setsigmask", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setsigdefault", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setflags", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getmacpolicyinfo_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setmacpolicyinfo_np", + "type": "CPP" + }, + { + "name": "T ___pthread_fchdir", + "type": "CPP" + }, + { + "name": "T ___pthread_chdir", + "type": "CPP" + }, + { + "name": "T _posix_spawn", + "type": "CPP" + }, + { + "name": "T ___posix_spawn", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_destroy", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_destroy", + "type": "CPP" + }, + { + "name": "T ___wait4", + "type": "CPP" + }, + { + "name": "T _mach_continuous_approximate_time", + "type": "CPP" + }, + { + "name": "T ___pthread_sigmask", + "type": "CPP" + }, + { + "name": "T ___semwait_signal_nocancel", + "type": "CPP" + }, + { + "name": "T _sigsuspend$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___sigsuspend_nocancel", + "type": "CPP" + }, + { + "name": "T __exit", + "type": "CPP" + }, + { + "name": "T _thread_info", + "type": "CPP" + }, + { + "name": "T _proc_pidoriginatorinfo", + "type": "CPP" + }, + { + "name": "T _getrusage", + "type": "CPP" + }, + { + "name": "T _mach_ports_register", + "type": "CPP" + }, + { + "name": "T ___fork", + "type": "CPP" + }, + { + "name": "T _setiopolicy_np", + "type": "CPP" + }, + { + "name": "T _ffsctl", + "type": "CPP" + }, + { + "name": "T _getsockname", + "type": "CPP" + }, + { + "name": "T _proc_set_cpumon_params", + "type": "CPP" + }, + { + "name": "T ___process_policy", + "type": "CPP" + }, + { + "name": "T _proc_set_cpumon_defaults", + "type": "CPP" + }, + { + "name": "T _proc_pid_rusage", + "type": "CPP" + }, + { + "name": "T _chown", + "type": "CPP" + }, + { + "name": "T _bind", + "type": "CPP" + }, + { + "name": "T _guarded_write_np", + "type": "CPP" + }, + { + "name": "T _mach_vm_copy", + "type": "CPP" + }, + { + "name": "T _mach_msg_server", + "type": "CPP" + }, + { + "name": "T _kill", + "type": "CPP" + }, + { + "name": "T ___kill", + "type": "CPP" + }, + { + "name": "T _chflags", + "type": "CPP" + }, + { + "name": "T _pathconf", + "type": "CPP" + }, + { + "name": "T _setpriority", + "type": "CPP" + }, + { + "name": "T ___setpriority", + "type": "CPP" + }, + { + "name": "T _vm_region_64", + "type": "CPP" + }, + { + "name": "T _vm_region_recurse_64", + "type": "CPP" + }, + { + "name": "T _getpriority", + "type": "CPP" + }, + { + "name": "T _proc_rlimit_control", + "type": "CPP" + }, + { + "name": "T ___pthread_kill", + "type": "CPP" + }, + { + "name": "T _setitimer", + "type": "CPP" + }, + { + "name": "T ___sandbox_msp", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_list", + "type": "CPP" + }, + { + "name": "T _listen", + "type": "CPP" + }, + { + "name": "T _accept", + "type": "CPP" + }, + { + "name": "T _poll", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setjetsam_ext", + "type": "CPP" + }, + { + "name": "T _getpgrp", + "type": "CPP" + }, + { + "name": "T _execve", + "type": "CPP" + }, + { + "name": "T _setsid", + "type": "CPP" + }, + { + "name": "T _dup2", + "type": "CPP" + }, + { + "name": "T _mach_msg_overwrite", + "type": "CPP" + }, + { + "name": "T _csr_get_active_config", + "type": "CPP" + }, + { + "name": "T _ptrace", + "type": "CPP" + }, + { + "name": "t _mach_msg_server_consume_unsent_message", + "type": "CPP" + }, + { + "name": "T _getdtablesize", + "type": "CPP" + }, + { + "name": "T _work_interval_create", + "type": "CPP" + }, + { + "name": "T ___work_interval_ctl", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_alloc", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_get_id", + "type": "CPP" + }, + { + "name": "T _memorystatus_control", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_type", + "type": "CPP" + }, + { + "name": "T _task_threads", + "type": "CPP" + }, + { + "name": "T _thread_get_state", + "type": "CPP" + }, + { + "name": "T _setgid", + "type": "CPP" + }, + { + "name": "T _setuid", + "type": "CPP" + }, + { + "name": "T _thread_policy_get", + "type": "CPP" + }, + { + "name": "T ___get_remove_counter", + "type": "CPP" + }, + { + "name": "T _pthread_setugid_np", + "type": "CPP" + }, + { + "name": "T _seteuid", + "type": "CPP" + }, + { + "name": "T _setegid", + "type": "CPP" + }, + { + "name": "T _vm_read", + "type": "CPP" + }, + { + "name": "T __kernelrpc_vm_read", + "type": "CPP" + }, + { + "name": "T ___sem_open", + "type": "CPP" + }, + { + "name": "T _sem_close", + "type": "CPP" + }, + { + "name": "T _auditon", + "type": "CPP" + }, + { + "name": "T _sfi_set_class_offtime", + "type": "CPP" + }, + { + "name": "T ___sfi_ctl", + "type": "CPP" + }, + { + "name": "T _system_set_sfi_window", + "type": "CPP" + }, + { + "name": "T _thread_get_exception_ports", + "type": "CPP" + }, + { + "name": "T _unlinkat", + "type": "CPP" + }, + { + "name": "T ___unlinkat", + "type": "CPP" + }, + { + "name": "T _proc_get_cpumon_params", + "type": "CPP" + }, + { + "name": "T _proc_disable_wakemon", + "type": "CPP" + }, + { + "name": "T _mlock", + "type": "CPP" + }, + { + "name": "T _munlock", + "type": "CPP" + }, + { + "name": "T _proc_set_wakemon_defaults", + "type": "CPP" + }, + { + "name": "T _host_statistics64", + "type": "CPP" + }, + { + "name": "T _proc_listpids", + "type": "CPP" + }, + { + "name": "T _clonefile", + "type": "CPP" + }, + { + "name": "T _proc_denap_assertion_begin_with_msg", + "type": "CPP" + }, + { + "name": "T _proc_importance_assertion_begin_with_msg", + "type": "CPP" + }, + { + "name": "T _proc_denap_assertion_complete", + "type": "CPP" + }, + { + "name": "T _proc_importance_assertion_complete", + "type": "CPP" + }, + { + "name": "T _mach_port_extract_right", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_extract_right", + "type": "CPP" + }, + { + "name": "T _task_set_exception_ports", + "type": "CPP" + }, + { + "name": "T _getpgid", + "type": "CPP" + }, + { + "name": "T _kdebug_signpost_start", + "type": "CPP" + }, + { + "name": "t _kdebug_signpost_internal", + "type": "CPP" + }, + { + "name": "T _kdebug_signpost_end", + "type": "CPP" + }, + { + "name": "T _host_statistics", + "type": "CPP" + }, + { + "name": "T _terminate_with_reason", + "type": "CPP" + }, + { + "name": "T ___terminate_with_payload", + "type": "CPP" + }, + { + "name": "T _task_set_info", + "type": "CPP" + }, + { + "name": "T _mach_voucher_extract_attr_content", + "type": "CPP" + }, + { + "name": "T _guarded_kqueue_np", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_attributes", + "type": "CPP" + }, + { + "name": "T _mach_vm_region_recurse", + "type": "CPP" + }, + { + "name": "T _necp_match_policy", + "type": "CPP" + }, + { + "name": "T _select$DARWIN_EXTSN", + "type": "CPP" + }, + { + "name": "T _mach_vm_read_overwrite", + "type": "CPP" + }, + { + "name": "T _mach_msg_server_once", + "type": "CPP" + }, + { + "name": "T _proc_disable_cpumon", + "type": "CPP" + }, + { + "name": "T _task_get_exception_ports", + "type": "CPP" + }, + { + "name": "T _audit_session_port", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setauditsessionport_np", + "type": "CPP" + }, + { + "name": "t _posix_spawn_appendportaction_np", + "type": "CPP" + }, + { + "name": "T ___sigreturn", + "type": "CPP" + }, + { + "name": "T _audit_session_join", + "type": "CPP" + }, + { + "name": "T ___sigwait", + "type": "CPP" + }, + { + "name": "T _setpgid", + "type": "CPP" + }, + { + "name": "T _lstat64", + "type": "CPP" + }, + { + "name": "T _stat64", + "type": "CPP" + }, + { + "name": "T _open", + "type": "CPP" + }, + { + "name": "T _fstatfs64", + "type": "CPP" + }, + { + "name": "T _mach_ports_lookup", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setcpumonitor_default", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setspecialport_np", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_addopen", + "type": "CPP" + }, + { + "name": "T _kevent64", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setbinpref_np", + "type": "CPP" + }, + { + "name": "T ___setlogin", + "type": "CPP" + }, + { + "name": "T ___initgroups", + "type": "CPP" + }, + { + "name": "T ___getlogin", + "type": "CPP" + }, + { + "name": "T _mach_port_set_context", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_set_context", + "type": "CPP" + }, + { + "name": "T _mach_port_get_set_status", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_set_status", + "type": "CPP" + }, + { + "name": "T ___pthread_canceled", + "type": "CPP" + }, + { + "name": "T _clock_sleep", + "type": "CPP" + }, + { + "name": "T _vm_map", + "type": "CPP" + }, + { + "name": "T __kernelrpc_vm_map", + "type": "CPP" + }, + { + "name": "T _flistxattr", + "type": "CPP" + }, + { + "name": "T _mach_msg_receive", + "type": "CPP" + }, + { + "name": "T _mount", + "type": "CPP" + }, + { + "name": "T _wait4", + "type": "CPP" + }, + { + "name": "T ___open_extended", + "type": "CPP" + }, + { + "name": "T _exchangedata", + "type": "CPP" + }, + { + "name": "T ___carbon_delete", + "type": "CPP" + }, + { + "name": "T ___delete", + "type": "CPP" + }, + { + "name": "T _unmount", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_addinherit_np", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_addclose", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setexceptionports_np", + "type": "CPP" + }, + { + "name": "T _os_cpu_in_cksum_mbuf", + "type": "CPP" + }, + { + "name": "T _os_cpu_copy_in_cksum", + "type": "CPP" + }, + { + "name": "T _sem_open", + "type": "CPP" + }, + { + "name": "T _shm_open", + "type": "CPP" + }, + { + "name": "T _msgsys", + "type": "CPP" + }, + { + "name": "T _semsys", + "type": "CPP" + }, + { + "name": "T _semctl", + "type": "CPP" + }, + { + "name": "T _shmsys", + "type": "CPP" + }, + { + "name": "T _____sigwait_nocancel", + "type": "CPP" + }, + { + "name": "T ___abort_with_payload", + "type": "CPP" + }, + { + "name": "T _accept$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _accessx_np", + "type": "CPP" + }, + { + "name": "T _aio_suspend$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___channel_get_info", + "type": "CPP" + }, + { + "name": "T ___channel_get_opt", + "type": "CPP" + }, + { + "name": "T ___channel_open", + "type": "CPP" + }, + { + "name": "T ___channel_set_opt", + "type": "CPP" + }, + { + "name": "T ___channel_sync", + "type": "CPP" + }, + { + "name": "T ___coalition", + "type": "CPP" + }, + { + "name": "T ___coalition_info", + "type": "CPP" + }, + { + "name": "T ___coalition_ledger", + "type": "CPP" + }, + { + "name": "T ___copyfile", + "type": "CPP" + }, + { + "name": "T ___crossarch_trap", + "type": "CPP" + }, + { + "name": "T ___debug_syscall_reject", + "type": "CPP" + }, + { + "name": "T ___debug_syscall_reject_config", + "type": "CPP" + }, + { + "name": "T ___execve", + "type": "CPP" + }, + { + "name": "T ___fs_snapshot", + "type": "CPP" + }, + { + "name": "T ___fstat_extended", + "type": "CPP" + }, + { + "name": "T _fsync$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _getsgroups_np", + "type": "CPP" + }, + { + "name": "T _getwgroups_np", + "type": "CPP" + }, + { + "name": "T ___guarded_open_dprotected_np", + "type": "CPP" + }, + { + "name": "T ___identitysvc", + "type": "CPP" + }, + { + "name": "T ___kdebug_trace", + "type": "CPP" + }, + { + "name": "T ___kdebug_trace_string", + "type": "CPP" + }, + { + "name": "T ___log_data", + "type": "CPP" + }, + { + "name": "T ___lstat_extended", + "type": "CPP" + }, + { + "name": "T ___sandbox_me", + "type": "CPP" + }, + { + "name": "T ___mac_get_fd", + "type": "CPP" + }, + { + "name": "T ___mac_get_file", + "type": "CPP" + }, + { + "name": "T ___mac_get_link", + "type": "CPP" + }, + { + "name": "T ___mac_get_mount", + "type": "CPP" + }, + { + "name": "T ___mac_get_pid", + "type": "CPP" + }, + { + "name": "T ___mac_get_proc", + "type": "CPP" + }, + { + "name": "T ___mac_getfsstat", + "type": "CPP" + }, + { + "name": "T ___sandbox_mm", + "type": "CPP" + }, + { + "name": "T ___mac_set_fd", + "type": "CPP" + }, + { + "name": "T ___mac_set_file", + "type": "CPP" + }, + { + "name": "T ___mac_set_link", + "type": "CPP" + }, + { + "name": "T ___mach_bridge_remote_time", + "type": "CPP" + }, + { + "name": "T ___mach_eventlink_signal", + "type": "CPP" + }, + { + "name": "T ___mach_eventlink_signal_wait_until", + "type": "CPP" + }, + { + "name": "T ___mach_eventlink_wait_until", + "type": "CPP" + }, + { + "name": "T ___map_with_linking_np", + "type": "CPP" + }, + { + "name": "T ___memorystatus_available_memory", + "type": "CPP" + }, + { + "name": "T ___microstackshot", + "type": "CPP" + }, + { + "name": "T ___mkdir_extended", + "type": "CPP" + }, + { + "name": "T ___mkfifo_extended", + "type": "CPP" + }, + { + "name": "T _msgctl", + "type": "CPP" + }, + { + "name": "T _msgrcv$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _msgsnd$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___msgsys", + "type": "CPP" + }, + { + "name": "T _msync$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___nexus_create", + "type": "CPP" + }, + { + "name": "T ___nexus_deregister", + "type": "CPP" + }, + { + "name": "T ___nexus_destroy", + "type": "CPP" + }, + { + "name": "T ___nexus_get_opt", + "type": "CPP" + }, + { + "name": "T ___nexus_open", + "type": "CPP" + }, + { + "name": "T ___nexus_register", + "type": "CPP" + }, + { + "name": "T ___nexus_set_opt", + "type": "CPP" + }, + { + "name": "T ___openat_dprotected_np", + "type": "CPP" + }, + { + "name": "T _poll$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _pread$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _preadv$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___proc_info_extended_id", + "type": "CPP" + }, + { + "name": "T ___pselect_nocancel", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_downgrade", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_longrdlock", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_unlock2", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_upgrade", + "type": "CPP" + }, + { + "name": "T ___psynch_rw_yieldwrlock", + "type": "CPP" + }, + { + "name": "T ___pthread_markcancel", + "type": "CPP" + }, + { + "name": "T _pwrite$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _pwritev$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _readv$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___reboot", + "type": "CPP" + }, + { + "name": "T ___record_system_event", + "type": "CPP" + }, + { + "name": "T _recvmsg$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___renameat", + "type": "CPP" + }, + { + "name": "T ___renameatx_np", + "type": "CPP" + }, + { + "name": "T _sem_wait$NOCANCEL", + "type": "CPP" + }, + { + "name": "T ___semctl", + "type": "CPP" + }, + { + "name": "T ___semsys", + "type": "CPP" + }, + { + "name": "T _setregid", + "type": "CPP" + }, + { + "name": "T _setreuid", + "type": "CPP" + }, + { + "name": "T _setsgroups_np", + "type": "CPP" + }, + { + "name": "T ___settid_with_pid", + "type": "CPP" + }, + { + "name": "T ___settimeofday", + "type": "CPP" + }, + { + "name": "T _setwgroups_np", + "type": "CPP" + }, + { + "name": "T ___sfi_pidctl", + "type": "CPP" + }, + { + "name": "T ___shared_region_check_np", + "type": "CPP" + }, + { + "name": "T ___shared_region_map_and_slide_2_np", + "type": "CPP" + }, + { + "name": "T _shmctl", + "type": "CPP" + }, + { + "name": "T ___shmsys", + "type": "CPP" + }, + { + "name": "T ___sigsuspend", + "type": "CPP" + }, + { + "name": "T ___stack_snapshot_with_config", + "type": "CPP" + }, + { + "name": "T ___stat_extended", + "type": "CPP" + }, + { + "name": "T ___telemetry", + "type": "CPP" + }, + { + "name": "T ___thread_selfusage", + "type": "CPP" + }, + { + "name": "T ___ulock_wait2", + "type": "CPP" + }, + { + "name": "T ___umask_extended", + "type": "CPP" + }, + { + "name": "T ___vfork", + "type": "CPP" + }, + { + "name": "T _waitid$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _writev$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _acct", + "type": "CPP" + }, + { + "name": "T _adjtime", + "type": "CPP" + }, + { + "name": "T _aio_cancel", + "type": "CPP" + }, + { + "name": "T _aio_error", + "type": "CPP" + }, + { + "name": "T _aio_fsync", + "type": "CPP" + }, + { + "name": "T _aio_read", + "type": "CPP" + }, + { + "name": "T _aio_return", + "type": "CPP" + }, + { + "name": "T _aio_suspend", + "type": "CPP" + }, + { + "name": "T _aio_write", + "type": "CPP" + }, + { + "name": "T _audit", + "type": "CPP" + }, + { + "name": "T _auditctl", + "type": "CPP" + }, + { + "name": "T _chroot", + "type": "CPP" + }, + { + "name": "T _disconnectx", + "type": "CPP" + }, + { + "name": "T _faccessat", + "type": "CPP" + }, + { + "name": "T _fchdir", + "type": "CPP" + }, + { + "name": "T _fchmodat", + "type": "CPP" + }, + { + "name": "T _fchownat", + "type": "CPP" + }, + { + "name": "T _fclonefileat", + "type": "CPP" + }, + { + "name": "T _fdatasync", + "type": "CPP" + }, + { + "name": "T _fhopen", + "type": "CPP" + }, + { + "name": "T _fmount", + "type": "CPP" + }, + { + "name": "T _fpathconf", + "type": "CPP" + }, + { + "name": "T _freadlink", + "type": "CPP" + }, + { + "name": "T _fremovexattr", + "type": "CPP" + }, + { + "name": "T _fsgetpath_ext", + "type": "CPP" + }, + { + "name": "T ___fstat", + "type": "CPP" + }, + { + "name": "T _fstat64", + "type": "CPP" + }, + { + "name": "T ___fstatat", + "type": "CPP" + }, + { + "name": "T _fstatat64", + "type": "CPP" + }, + { + "name": "T ___fstatfs", + "type": "CPP" + }, + { + "name": "T _getattrlistat", + "type": "CPP" + }, + { + "name": "T _getauid", + "type": "CPP" + }, + { + "name": "T _getdirentries", + "type": "CPP" + }, + { + "name": "T _getdirentriesattr", + "type": "CPP" + }, + { + "name": "T _getfh", + "type": "CPP" + }, + { + "name": "T ___getfsstat", + "type": "CPP" + }, + { + "name": "T _getfsstat64", + "type": "CPP" + }, + { + "name": "T _getitimer", + "type": "CPP" + }, + { + "name": "T _getsid", + "type": "CPP" + }, + { + "name": "T _grab_pgo_data", + "type": "CPP" + }, + { + "name": "T _graftdmg", + "type": "CPP" + }, + { + "name": "T _guarded_writev_np", + "type": "CPP" + }, + { + "name": "T _kas_info", + "type": "CPP" + }, + { + "name": "T _ledger", + "type": "CPP" + }, + { + "name": "T _linkat", + "type": "CPP" + }, + { + "name": "T _lio_listio", + "type": "CPP" + }, + { + "name": "T ___lstat", + "type": "CPP" + }, + { + "name": "T _memorystatus_get_level", + "type": "CPP" + }, + { + "name": "T _mincore", + "type": "CPP" + }, + { + "name": "T _minherit", + "type": "CPP" + }, + { + "name": "T _mkfifo", + "type": "CPP" + }, + { + "name": "T _mkfifoat", + "type": "CPP" + }, + { + "name": "T _mknod", + "type": "CPP" + }, + { + "name": "T _mknodat", + "type": "CPP" + }, + { + "name": "T _mlockall", + "type": "CPP" + }, + { + "name": "T _mremap_encrypted", + "type": "CPP" + }, + { + "name": "T _msgget", + "type": "CPP" + }, + { + "name": "T _msgrcv", + "type": "CPP" + }, + { + "name": "T _msgsnd", + "type": "CPP" + }, + { + "name": "T _munlockall", + "type": "CPP" + }, + { + "name": "T _necp_session_action", + "type": "CPP" + }, + { + "name": "T _necp_session_open", + "type": "CPP" + }, + { + "name": "T _net_qos_guideline", + "type": "CPP" + }, + { + "name": "T _netagent_trigger", + "type": "CPP" + }, + { + "name": "T _nfssvc", + "type": "CPP" + }, + { + "name": "T _ntp_adjtime", + "type": "CPP" + }, + { + "name": "T _ntp_gettime", + "type": "CPP" + }, + { + "name": "T _objc_bp_assist_cfg_np", + "type": "CPP" + }, + { + "name": "T _openbyid_np", + "type": "CPP" + }, + { + "name": "T _os_fault_with_payload", + "type": "CPP" + }, + { + "name": "T _panic_with_data", + "type": "CPP" + }, + { + "name": "T _peeloff", + "type": "CPP" + }, + { + "name": "T _pid_hibernate", + "type": "CPP" + }, + { + "name": "T _pid_resume", + "type": "CPP" + }, + { + "name": "T _pid_shutdown_sockets", + "type": "CPP" + }, + { + "name": "T _pid_suspend", + "type": "CPP" + }, + { + "name": "T _pivot_root", + "type": "CPP" + }, + { + "name": "T _preadv", + "type": "CPP" + }, + { + "name": "T _proc_trace_log", + "type": "CPP" + }, + { + "name": "T _proc_uuid_policy", + "type": "CPP" + }, + { + "name": "T _pwritev", + "type": "CPP" + }, + { + "name": "T _readlinkat", + "type": "CPP" + }, + { + "name": "T _readv", + "type": "CPP" + }, + { + "name": "T _recvmsg_x", + "type": "CPP" + }, + { + "name": "T _register_uexc_handler", + "type": "CPP" + }, + { + "name": "T _revoke", + "type": "CPP" + }, + { + "name": "T _searchfs", + "type": "CPP" + }, + { + "name": "T _sem_post", + "type": "CPP" + }, + { + "name": "T _sem_trywait", + "type": "CPP" + }, + { + "name": "T _sem_unlink", + "type": "CPP" + }, + { + "name": "T _sem_wait", + "type": "CPP" + }, + { + "name": "T _semget", + "type": "CPP" + }, + { + "name": "T _semop", + "type": "CPP" + }, + { + "name": "T _sendfile", + "type": "CPP" + }, + { + "name": "T _sendmsg_x", + "type": "CPP" + }, + { + "name": "T _setattrlistat", + "type": "CPP" + }, + { + "name": "T _setaudit_addr", + "type": "CPP" + }, + { + "name": "T _setauid", + "type": "CPP" + }, + { + "name": "T _setgroups", + "type": "CPP" + }, + { + "name": "T _setprivexec", + "type": "CPP" + }, + { + "name": "T _shm_unlink", + "type": "CPP" + }, + { + "name": "T _shmat", + "type": "CPP" + }, + { + "name": "T _shmdt", + "type": "CPP" + }, + { + "name": "T _shmget", + "type": "CPP" + }, + { + "name": "T _sigpending", + "type": "CPP" + }, + { + "name": "T _socket_delegate", + "type": "CPP" + }, + { + "name": "T ___stat", + "type": "CPP" + }, + { + "name": "T ___statfs", + "type": "CPP" + }, + { + "name": "T _statfs64", + "type": "CPP" + }, + { + "name": "T _swapon", + "type": "CPP" + }, + { + "name": "T _symlinkat", + "type": "CPP" + }, + { + "name": "T _sync", + "type": "CPP" + }, + { + "name": "T _system_override", + "type": "CPP" + }, + { + "name": "T _task_inspect_for_pid", + "type": "CPP" + }, + { + "name": "T _task_read_for_pid", + "type": "CPP" + }, + { + "name": "T _thread_selfcounts", + "type": "CPP" + }, + { + "name": "T _tracker_action", + "type": "CPP" + }, + { + "name": "T _truncate", + "type": "CPP" + }, + { + "name": "T _undelete", + "type": "CPP" + }, + { + "name": "T _ungraftdmg", + "type": "CPP" + }, + { + "name": "T _usrctl", + "type": "CPP" + }, + { + "name": "T _vfs_purge", + "type": "CPP" + }, + { + "name": "T _vm_pressure_monitor", + "type": "CPP" + }, + { + "name": "T _waitid", + "type": "CPP" + }, + { + "name": "T __thread_set_tsd_base", + "type": "CPP" + }, + { + "name": "t _bzero", + "type": "CPP" + }, + { + "name": "t _memmove", + "type": "CPP" + }, + { + "name": "t __libkernel_strlen", + "type": "CPP" + }, + { + "name": "T ___libkernel_init_late", + "type": "CPP" + }, + { + "name": "T ___libkernel_init_after_boot_tasks", + "type": "CPP" + }, + { + "name": "t __libkernel_strchr", + "type": "CPP" + }, + { + "name": "t __libkernel_bzero", + "type": "CPP" + }, + { + "name": "t __libkernel_memset", + "type": "CPP" + }, + { + "name": "t __libkernel_memmove", + "type": "CPP" + }, + { + "name": "t __system_version_compat_check_path_suffix", + "type": "CPP" + }, + { + "name": "t __system_version_compat_open_shim", + "type": "CPP" + }, + { + "name": "t __libkernel_strcpy", + "type": "CPP" + }, + { + "name": "t __posix_spawn_with_filter", + "type": "CPP" + }, + { + "name": "t __execve_with_filter", + "type": "CPP" + }, + { + "name": "t __libkernel_strlcpy", + "type": "CPP" + }, + { + "name": "T _mach_host_special_port_description", + "type": "CPP" + }, + { + "name": "T _mach_task_special_port_description", + "type": "CPP" + }, + { + "name": "T _mach_thread_special_port_description", + "type": "CPP" + }, + { + "name": "T _mach_host_special_port_for_id", + "type": "CPP" + }, + { + "name": "t _port_for_id_internal", + "type": "CPP" + }, + { + "name": "T _mach_task_special_port_for_id", + "type": "CPP" + }, + { + "name": "T _mach_thread_special_port_for_id", + "type": "CPP" + }, + { + "name": "T _pkt_subtype_assert_fail", + "type": "CPP" + }, + { + "name": "T _pkt_type_assert_fail", + "type": "CPP" + }, + { + "name": "T _os_packet_set_headroom", + "type": "CPP" + }, + { + "name": "T _os_packet_get_headroom", + "type": "CPP" + }, + { + "name": "T _os_packet_set_link_header_length", + "type": "CPP" + }, + { + "name": "T _os_packet_get_link_header_length", + "type": "CPP" + }, + { + "name": "T _os_packet_set_link_broadcast", + "type": "CPP" + }, + { + "name": "T _os_packet_get_link_broadcast", + "type": "CPP" + }, + { + "name": "T _os_packet_set_link_multicast", + "type": "CPP" + }, + { + "name": "T _os_packet_get_link_multicast", + "type": "CPP" + }, + { + "name": "T _os_packet_set_link_ethfcs", + "type": "CPP" + }, + { + "name": "T _os_packet_get_link_ethfcs", + "type": "CPP" + }, + { + "name": "T _os_packet_set_transport_traffic_background", + "type": "CPP" + }, + { + "name": "T _os_packet_get_transport_traffic_background", + "type": "CPP" + }, + { + "name": "T _os_packet_set_transport_traffic_realtime", + "type": "CPP" + }, + { + "name": "T _os_packet_get_transport_traffic_realtime", + "type": "CPP" + }, + { + "name": "T _os_packet_set_transport_retransmit", + "type": "CPP" + }, + { + "name": "T _os_packet_get_transport_retransmit", + "type": "CPP" + }, + { + "name": "T _os_packet_set_transport_last_packet", + "type": "CPP" + }, + { + "name": "T _os_packet_set_service_class", + "type": "CPP" + }, + { + "name": "T _os_packet_get_service_class", + "type": "CPP" + }, + { + "name": "T _os_packet_set_compression_generation_count", + "type": "CPP" + }, + { + "name": "T _os_packet_get_compression_generation_count", + "type": "CPP" + }, + { + "name": "T _os_packet_set_traffic_class", + "type": "CPP" + }, + { + "name": "T _os_packet_get_traffic_class", + "type": "CPP" + }, + { + "name": "T _os_packet_set_inet_checksum", + "type": "CPP" + }, + { + "name": "T _os_packet_add_inet_csum_flags", + "type": "CPP" + }, + { + "name": "T _os_packet_get_inet_checksum", + "type": "CPP" + }, + { + "name": "T _os_packet_get_flow_uuid", + "type": "CPP" + }, + { + "name": "T _os_packet_set_flow_uuid", + "type": "CPP" + }, + { + "name": "T _os_packet_clear_flow_uuid", + "type": "CPP" + }, + { + "name": "T _os_packet_set_group_start", + "type": "CPP" + }, + { + "name": "T _os_packet_get_group_start", + "type": "CPP" + }, + { + "name": "T _os_packet_set_group_end", + "type": "CPP" + }, + { + "name": "T _os_packet_get_group_end", + "type": "CPP" + }, + { + "name": "T _os_packet_get_expire_time", + "type": "CPP" + }, + { + "name": "T _os_packet_set_expire_time", + "type": "CPP" + }, + { + "name": "T _os_packet_get_expiry_action", + "type": "CPP" + }, + { + "name": "T _os_packet_set_expiry_action", + "type": "CPP" + }, + { + "name": "T _os_packet_get_token", + "type": "CPP" + }, + { + "name": "T _os_packet_set_token", + "type": "CPP" + }, + { + "name": "T _os_packet_get_packetid", + "type": "CPP" + }, + { + "name": "T _os_packet_set_packetid", + "type": "CPP" + }, + { + "name": "T _os_packet_set_vlan_tag", + "type": "CPP" + }, + { + "name": "T _os_packet_get_vlan_tag", + "type": "CPP" + }, + { + "name": "T _os_packet_get_vlan_id", + "type": "CPP" + }, + { + "name": "T _os_packet_get_vlan_priority", + "type": "CPP" + }, + { + "name": "T _os_packet_set_app_metadata", + "type": "CPP" + }, + { + "name": "T _os_packet_get_wake_flag", + "type": "CPP" + }, + { + "name": "T _os_packet_get_keep_alive", + "type": "CPP" + }, + { + "name": "T _os_packet_set_keep_alive", + "type": "CPP" + }, + { + "name": "T _os_packet_get_truncated", + "type": "CPP" + }, + { + "name": "T _os_packet_set_l4s_flag", + "type": "CPP" + }, + { + "name": "T _os_packet_get_data_length", + "type": "CPP" + }, + { + "name": "T _os_packet_get_buflet_count", + "type": "CPP" + }, + { + "name": "T _os_packet_get_next_buflet", + "type": "CPP" + }, + { + "name": "T _os_packet_get_segment_count", + "type": "CPP" + }, + { + "name": "T _os_packet_finalize", + "type": "CPP" + }, + { + "name": "T _os_packet_add_buflet", + "type": "CPP" + }, + { + "name": "T _os_packet_increment_use_count", + "type": "CPP" + }, + { + "name": "T _os_packet_decrement_use_count", + "type": "CPP" + }, + { + "name": "T _os_packet_get_aggregation_type", + "type": "CPP" + }, + { + "name": "T _os_packet_set_tx_timestamp", + "type": "CPP" + }, + { + "name": "T _os_inet_checksum", + "type": "CPP" + }, + { + "name": "T _os_copy_and_inet_checksum", + "type": "CPP" + }, + { + "name": "T _os_buflet_get_data_offset", + "type": "CPP" + }, + { + "name": "T _os_buflet_get_data_length", + "type": "CPP" + }, + { + "name": "T _os_buflet_set_data_offset", + "type": "CPP" + }, + { + "name": "T _os_buflet_set_data_length", + "type": "CPP" + }, + { + "name": "T _os_buflet_get_object_address", + "type": "CPP" + }, + { + "name": "T _os_buflet_get_object_limit", + "type": "CPP" + }, + { + "name": "T _os_buflet_get_data_address", + "type": "CPP" + }, + { + "name": "T _os_buflet_get_data_limit", + "type": "CPP" + }, + { + "name": "T _os_packet_get_trace_id", + "type": "CPP" + }, + { + "name": "T _os_packet_set_trace_id", + "type": "CPP" + }, + { + "name": "T _os_packet_trace_event", + "type": "CPP" + }, + { + "name": "T _os_packet_set_protocol_segment_size", + "type": "CPP" + }, + { + "name": "T _os_packet_set_tso_flags", + "type": "CPP" + }, + { + "name": "T _reboot", + "type": "CPP" + }, + { + "name": "T _reboot_np", + "type": "CPP" + }, + { + "name": "t __mach_continuous_time", + "type": "CPP" + }, + { + "name": "T _renameat", + "type": "CPP" + }, + { + "name": "t _internal_catch_exception_raise_state_identity", + "type": "CPP" + }, + { + "name": "t _internal_catch_exception_raise_state", + "type": "CPP" + }, + { + "name": "t _internal_catch_exception_raise", + "type": "CPP" + }, + { + "name": "t _fprintf_stderr", + "type": "CPP" + }, + { + "name": "T _guarded_open_dprotected_np", + "type": "CPP" + }, + { + "name": "T _host_get_atm_diagnostic_flag", + "type": "CPP" + }, + { + "name": "T _host_get_multiuser_config_flags", + "type": "CPP" + }, + { + "name": "T _host_check_multiuser_mode", + "type": "CPP" + }, + { + "name": "T _mach_error_type", + "type": "CPP" + }, + { + "name": "T _mach_error", + "type": "CPP" + }, + { + "name": "T _host_page_size", + "type": "CPP" + }, + { + "name": "T __mach_fork_child", + "type": "CPP" + }, + { + "name": "T _exclaves_endpoint_call", + "type": "CPP" + }, + { + "name": "T _exclaves_outbound_buffer_create", + "type": "CPP" + }, + { + "name": "T _exclaves_outbound_buffer_copyout", + "type": "CPP" + }, + { + "name": "T _exclaves_inbound_buffer_create", + "type": "CPP" + }, + { + "name": "T _exclaves_inbound_buffer_copyin", + "type": "CPP" + }, + { + "name": "T _exclaves_named_buffer_create", + "type": "CPP" + }, + { + "name": "T _exclaves_named_buffer_copyin", + "type": "CPP" + }, + { + "name": "T _exclaves_named_buffer_copyout", + "type": "CPP" + }, + { + "name": "T _exclaves_launch_conclave", + "type": "CPP" + }, + { + "name": "T _exclaves_lookup_service", + "type": "CPP" + }, + { + "name": "T _exclaves_boot", + "type": "CPP" + }, + { + "name": "T _exclaves_audio_buffer_create", + "type": "CPP" + }, + { + "name": "T _exclaves_audio_buffer_copyout", + "type": "CPP" + }, + { + "name": "T _exclaves_sensor_create", + "type": "CPP" + }, + { + "name": "T _exclaves_sensor_start", + "type": "CPP" + }, + { + "name": "T _exclaves_sensor_stop", + "type": "CPP" + }, + { + "name": "T _exclaves_sensor_status", + "type": "CPP" + }, + { + "name": "T _exclaves_notification_create", + "type": "CPP" + }, + { + "name": "T _mach_msg2_internal", + "type": "CPP" + }, + { + "name": "T _mach_msg_server_importance", + "type": "CPP" + }, + { + "name": "T _mach_msg_priority_is_pthread_priority", + "type": "CPP" + }, + { + "name": "T _mach_msg_priority_encode", + "type": "CPP" + }, + { + "name": "T _mach_msg_priority_overide_qos", + "type": "CPP" + }, + { + "name": "T _mach_msg_priority_qos", + "type": "CPP" + }, + { + "name": "T _mach_msg_priority_relpri", + "type": "CPP" + }, + { + "name": "T _mig_allocate", + "type": "CPP" + }, + { + "name": "T _quota", + "type": "CPP" + }, + { + "name": "T _setquota", + "type": "CPP" + }, + { + "name": "T _panic_init", + "type": "CPP" + }, + { + "name": "T _panic", + "type": "CPP" + }, + { + "name": "T _port_obj_init", + "type": "CPP" + }, + { + "name": "T _semaphore_signal_all", + "type": "CPP" + }, + { + "name": "T _semaphore_signal_thread", + "type": "CPP" + }, + { + "name": "T _semaphore_wait_signal", + "type": "CPP" + }, + { + "name": "T _semaphore_timedwait_signal", + "type": "CPP" + }, + { + "name": "T _msg_rpc", + "type": "CPP" + }, + { + "name": "T _msg_send", + "type": "CPP" + }, + { + "name": "T _msg_receive", + "type": "CPP" + }, + { + "name": "T _task_self_", + "type": "CPP" + }, + { + "name": "T _host_self", + "type": "CPP" + }, + { + "name": "T __mach_vsnprintf", + "type": "CPP" + }, + { + "name": "T __mach_snprintf", + "type": "CPP" + }, + { + "name": "T _pselect$DARWIN_EXTSN$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _mach_task_self", + "type": "CPP" + }, + { + "name": "T _mach_right_recv_construct", + "type": "CPP" + }, + { + "name": "T _mach_right_recv_destruct", + "type": "CPP" + }, + { + "name": "T _mach_right_send_create", + "type": "CPP" + }, + { + "name": "T _mach_right_send_retain", + "type": "CPP" + }, + { + "name": "T _mach_right_send_once_create", + "type": "CPP" + }, + { + "name": "T _mach_right_send_once_consume", + "type": "CPP" + }, + { + "name": "T _os_proc_available_memory", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_ringbuffer_init", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_mark_free", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_mark_used", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_update_kernel_accounting", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_is_available", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_is_reclaimed", + "type": "CPP" + }, + { + "name": "T _mach_vm_reclaim_synchronize", + "type": "CPP" + }, + { + "name": "T _proc_listallpids", + "type": "CPP" + }, + { + "name": "T _proc_listpgrppids", + "type": "CPP" + }, + { + "name": "T _proc_listchildpids", + "type": "CPP" + }, + { + "name": "T _proc_listcoalitions", + "type": "CPP" + }, + { + "name": "T _proc_setthread_cpupercent", + "type": "CPP" + }, + { + "name": "T _proc_pidfdinfo", + "type": "CPP" + }, + { + "name": "T _proc_pidfileportinfo", + "type": "CPP" + }, + { + "name": "T _proc_piddynkqueueinfo", + "type": "CPP" + }, + { + "name": "T _proc_udata_info", + "type": "CPP" + }, + { + "name": "T _proc_regionfilename", + "type": "CPP" + }, + { + "name": "T _proc_kmsgbuf", + "type": "CPP" + }, + { + "name": "T _proc_pidpath_audittoken", + "type": "CPP" + }, + { + "name": "T _proc_current_thread_schedinfo", + "type": "CPP" + }, + { + "name": "T _proc_libversion", + "type": "CPP" + }, + { + "name": "T _proc_get_dirty", + "type": "CPP" + }, + { + "name": "T _proc_clear_dirty", + "type": "CPP" + }, + { + "name": "T _proc_terminate", + "type": "CPP" + }, + { + "name": "T _proc_signal_with_audittoken", + "type": "CPP" + }, + { + "name": "T _proc_terminate_with_audittoken", + "type": "CPP" + }, + { + "name": "T _proc_terminate_all_rsr", + "type": "CPP" + }, + { + "name": "T _proc_resume_cpumon", + "type": "CPP" + }, + { + "name": "T _proc_set_cpumon_params_fatal", + "type": "CPP" + }, + { + "name": "T _proc_set_wakemon_params", + "type": "CPP" + }, + { + "name": "T _proc_get_wakemon_params", + "type": "CPP" + }, + { + "name": "T _proc_list_uptrs", + "type": "CPP" + }, + { + "name": "T _proc_list_dynkqueueids", + "type": "CPP" + }, + { + "name": "T _proc_setcpu_percentage", + "type": "CPP" + }, + { + "name": "T _proc_reset_footprint_interval", + "type": "CPP" + }, + { + "name": "T _proc_clear_cpulimits", + "type": "CPP" + }, + { + "name": "T _proc_donate_importance_boost", + "type": "CPP" + }, + { + "name": "T _proc_clear_vmpressure", + "type": "CPP" + }, + { + "name": "T _proc_set_owner_vmpressure", + "type": "CPP" + }, + { + "name": "T _proc_set_delayidlesleep", + "type": "CPP" + }, + { + "name": "T _proc_clear_delayidlesleep", + "type": "CPP" + }, + { + "name": "T _proc_disable_apptype", + "type": "CPP" + }, + { + "name": "T _proc_enable_apptype", + "type": "CPP" + }, + { + "name": "T _proc_suppress", + "type": "CPP" + }, + { + "name": "T _proc_set_no_smt", + "type": "CPP" + }, + { + "name": "T _proc_setthread_no_smt", + "type": "CPP" + }, + { + "name": "T _proc_set_csm", + "type": "CPP" + }, + { + "name": "T _proc_setthread_csm", + "type": "CPP" + }, + { + "name": "T __getprivatesystemidentifier", + "type": "CPP" + }, + { + "name": "T __register_gethostuuid_callback", + "type": "CPP" + }, + { + "name": "T _mach_boottime_usec", + "type": "CPP" + }, + { + "name": "T _mach_task_is_self", + "type": "CPP" + }, + { + "name": "T _nfsclnt", + "type": "CPP" + }, + { + "name": "T _open$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _openat$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_signal", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_wait_until", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_signal_wait_until", + "type": "CPP" + }, + { + "name": "T _futimens", + "type": "CPP" + }, + { + "name": "t _prepare_times_array_and_attrs", + "type": "CPP" + }, + { + "name": "T _utimensat", + "type": "CPP" + }, + { + "name": "T _thread_set_policy", + "type": "CPP" + }, + { + "name": "T _thread_get_register_pointer_values", + "type": "CPP" + }, + { + "name": "T _renameatx_np", + "type": "CPP" + }, + { + "name": "T _renamex_np", + "type": "CPP" + }, + { + "name": "T _rename_ext", + "type": "CPP" + }, + { + "name": "T _log_data_as_kernel", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getflags", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getsigdefault", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getpgroup", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getsigmask", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getbinpref_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getarchpref_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getpcontrol_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getprocesstype_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setpgroup", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setarchpref_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setpcontrol_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setprocesstype_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setdataless_iopolicy_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_use_sec_transition_shims_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_subsystem_root_path_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_platform_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_disable_ptr_auth_a_keys_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_alt_rosetta_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_crash_behavior_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_crash_behavior_deadline_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_crash_count_np", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_add_fileportdup2_np", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_addchdir_np", + "type": "CPP" + }, + { + "name": "T _posix_spawn_file_actions_addfchdir_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setcpumonitor", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_getcpumonitor", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_threadlimit_ext", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_importancewatch_port_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_registered_ports_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_ptrauth_task_port_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setcoalition_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_qos_clamp_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_get_qos_clamp_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_darwin_role_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_get_darwin_role_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_persona_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_persona_uid_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_persona_gid_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_persona_groups_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_max_addr_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_setnosmt_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_csm_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_uid_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_gid_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_groups_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_login_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_conclave_id_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_portlimits_ext", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_filedesclimit_ext", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_kqworklooplimit_ext", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_jetsam_ttr_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_launch_type_np", + "type": "CPP" + }, + { + "name": "T _stackshot_config_create", + "type": "CPP" + }, + { + "name": "T _stackshot_config_set_pid", + "type": "CPP" + }, + { + "name": "T _stackshot_config_set_flags", + "type": "CPP" + }, + { + "name": "T _stackshot_capture_with_config", + "type": "CPP" + }, + { + "name": "T _stackshot_config_get_stackshot_buffer", + "type": "CPP" + }, + { + "name": "T _stackshot_config_get_stackshot_size", + "type": "CPP" + }, + { + "name": "T _stackshot_config_set_size_hint", + "type": "CPP" + }, + { + "name": "T _stackshot_config_set_delta_timestamp", + "type": "CPP" + }, + { + "name": "T _stackshot_config_set_pagetable_mask", + "type": "CPP" + }, + { + "name": "T _stackshot_config_dealloc_buffer", + "type": "CPP" + }, + { + "name": "T _stackshot_config_dealloc", + "type": "CPP" + }, + { + "name": "T ___darwin_check_fd_set_overflow", + "type": "CPP" + }, + { + "name": "T _terminate_with_payload", + "type": "CPP" + }, + { + "name": "T _system_get_sfi_window", + "type": "CPP" + }, + { + "name": "T _sfi_get_class_offtime", + "type": "CPP" + }, + { + "name": "T _sfi_process_set_flags", + "type": "CPP" + }, + { + "name": "T _sfi_process_get_flags", + "type": "CPP" + }, + { + "name": "T _os_channel_create_extended", + "type": "CPP" + }, + { + "name": "t _os_channel_info2attr", + "type": "CPP" + }, + { + "name": "t _os_channel_init_ring", + "type": "CPP" + }, + { + "name": "T _os_channel_create", + "type": "CPP" + }, + { + "name": "T _os_channel_get_fd", + "type": "CPP" + }, + { + "name": "T _os_channel_read_attr", + "type": "CPP" + }, + { + "name": "T _os_channel_write_attr", + "type": "CPP" + }, + { + "name": "T _os_channel_read_nexus_extension_info", + "type": "CPP" + }, + { + "name": "T _os_channel_sync", + "type": "CPP" + }, + { + "name": "T _os_channel_destroy", + "type": "CPP" + }, + { + "name": "T _os_channel_is_defunct", + "type": "CPP" + }, + { + "name": "T _os_channel_ring_id", + "type": "CPP" + }, + { + "name": "T _os_channel_tx_ring", + "type": "CPP" + }, + { + "name": "T _os_channel_rx_ring", + "type": "CPP" + }, + { + "name": "T _os_channel_pending", + "type": "CPP" + }, + { + "name": "T _os_channel_ring_sync_time", + "type": "CPP" + }, + { + "name": "T _os_channel_ring_notify_time", + "type": "CPP" + }, + { + "name": "T _os_channel_available_slot_count", + "type": "CPP" + }, + { + "name": "T _os_channel_advance_slot", + "type": "CPP" + }, + { + "name": "T _os_channel_get_next_slot", + "type": "CPP" + }, + { + "name": "T _os_channel_set_slot_properties", + "type": "CPP" + }, + { + "name": "T _os_channel_slot_get_packet", + "type": "CPP" + }, + { + "name": "T _os_channel_get_stats_region", + "type": "CPP" + }, + { + "name": "T _os_channel_get_advisory_region", + "type": "CPP" + }, + { + "name": "T _os_channel_flow_admissible", + "type": "CPP" + }, + { + "name": "T _os_channel_flow_adv_get_ce_count", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_create", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_clone", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_set_key", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_destroy", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_set", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_get", + "type": "CPP" + }, + { + "name": "T _os_channel_attr_get_key", + "type": "CPP" + }, + { + "name": "T _os_channel_packet_alloc", + "type": "CPP" + }, + { + "name": "t _os_channel_packet_alloc_common", + "type": "CPP" + }, + { + "name": "T _os_channel_large_packet_alloc", + "type": "CPP" + }, + { + "name": "T _os_channel_packet_free", + "type": "CPP" + }, + { + "name": "T _os_channel_slot_attach_packet", + "type": "CPP" + }, + { + "name": "T _os_channel_slot_detach_packet", + "type": "CPP" + }, + { + "name": "T _os_channel_packet_pool_purge", + "type": "CPP" + }, + { + "name": "t _os_channel_purge_packet_alloc_ring_common", + "type": "CPP" + }, + { + "name": "T _os_channel_buflet_free", + "type": "CPP" + }, + { + "name": "T _os_channel_get_next_event_handle", + "type": "CPP" + }, + { + "name": "T _os_channel_event_free", + "type": "CPP" + }, + { + "name": "T _os_channel_get_interface_advisory", + "type": "CPP" + }, + { + "name": "T _os_channel_configure_interface_advisory", + "type": "CPP" + }, + { + "name": "T _os_channel_buflet_alloc", + "type": "CPP" + }, + { + "name": "T _sem_destroy", + "type": "CPP" + }, + { + "name": "T _sem_getvalue", + "type": "CPP" + }, + { + "name": "T _sem_init", + "type": "CPP" + }, + { + "name": "T _pid_shutdown_networking", + "type": "CPP" + }, + { + "name": "T _coalition_create", + "type": "CPP" + }, + { + "name": "T _coalition_terminate", + "type": "CPP" + }, + { + "name": "T _coalition_reap", + "type": "CPP" + }, + { + "name": "T _coalition_info_resource_usage", + "type": "CPP" + }, + { + "name": "T _coalition_info_debug_info", + "type": "CPP" + }, + { + "name": "T _coalition_info_set_name", + "type": "CPP" + }, + { + "name": "T _coalition_info_set_efficiency", + "type": "CPP" + }, + { + "name": "T _coalition_ledger_set_logical_writes_limit", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_create", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_delete", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_rename", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_revert", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_root", + "type": "CPP" + }, + { + "name": "T _fs_snapshot_mount", + "type": "CPP" + }, + { + "name": "T _debug_syscall_reject_config", + "type": "CPP" + }, + { + "name": "T _debug_syscall_reject", + "type": "CPP" + }, + { + "name": "T _kdebug_using_continuous_time", + "type": "CPP" + }, + { + "name": "T _kdebug_timestamp", + "type": "CPP" + }, + { + "name": "T _kdebug_timestamp_from_absolute", + "type": "CPP" + }, + { + "name": "T _kdebug_timestamp_from_continuous", + "type": "CPP" + }, + { + "name": "T _kdebug_signpost", + "type": "CPP" + }, + { + "name": "T _record_system_event_as_kernel", + "type": "CPP" + }, + { + "name": "T _pselect", + "type": "CPP" + }, + { + "name": "T _pselect$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _os_nexus_attr_create", + "type": "CPP" + }, + { + "name": "T _os_nexus_attr_clone", + "type": "CPP" + }, + { + "name": "T _os_nexus_attr_set", + "type": "CPP" + }, + { + "name": "T _os_nexus_attr_get", + "type": "CPP" + }, + { + "name": "T _os_nexus_attr_destroy", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_create", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_get_fd", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_register_provider", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_deregister_provider", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_alloc_provider_instance", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_free_provider_instance", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_bind_provider_instance", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_unbind_provider_instance", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_read_provider_attr", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_add_traffic_rule", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_remove_traffic_rule", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_iterate_traffic_rules", + "type": "CPP" + }, + { + "name": "T _os_nexus_controller_destroy", + "type": "CPP" + }, + { + "name": "T ___os_nexus_ifattach", + "type": "CPP" + }, + { + "name": "T ___os_nexus_ifdetach", + "type": "CPP" + }, + { + "name": "T ___os_nexus_flow_add", + "type": "CPP" + }, + { + "name": "T ___os_nexus_flow_del", + "type": "CPP" + }, + { + "name": "T _os_nexus_flow_set_wake_from_sleep", + "type": "CPP" + }, + { + "name": "T ___os_nexus_get_llink_info", + "type": "CPP" + }, + { + "name": "T _sigsuspend", + "type": "CPP" + }, + { + "name": "T _openat", + "type": "CPP" + }, + { + "name": "T _work_interval_get_flags_from_port", + "type": "CPP" + }, + { + "name": "T _work_interval_notify", + "type": "CPP" + }, + { + "name": "T _work_interval_notify_simple", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_clear", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_free", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_set_start", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_set_deadline", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_set_finish", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_set_complexity", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_get_start", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_get_deadline", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_get_finish", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_get_complexity", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_get_telemetry_data", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_start", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_update", + "type": "CPP" + }, + { + "name": "T _work_interval_instance_finish", + "type": "CPP" + }, + { + "name": "T _work_interval_destroy", + "type": "CPP" + }, + { + "name": "T _work_interval_join", + "type": "CPP" + }, + { + "name": "T _work_interval_join_port", + "type": "CPP" + }, + { + "name": "T _work_interval_leave", + "type": "CPP" + }, + { + "name": "T _work_interval_copy_port", + "type": "CPP" + }, + { + "name": "T _os_cpu_in_cksum", + "type": "CPP" + }, + { + "name": "T _openat_dprotected_np", + "type": "CPP" + }, + { + "name": "T _openat_authenticated_np", + "type": "CPP" + }, + { + "name": "T _proc_listpidspath", + "type": "CPP" + }, + { + "name": "T _os_channel_event_get_next_event", + "type": "CPP" + }, + { + "name": "T _os_channel_event_get_event_data", + "type": "CPP" + }, + { + "name": "T _mach_port_names", + "type": "CPP" + }, + { + "name": "T _mach_port_rename", + "type": "CPP" + }, + { + "name": "T _mach_port_allocate_name", + "type": "CPP" + }, + { + "name": "T _mach_port_peek", + "type": "CPP" + }, + { + "name": "T _mach_port_set_mscount", + "type": "CPP" + }, + { + "name": "T _mach_port_set_seqno", + "type": "CPP" + }, + { + "name": "T _mach_port_allocate_qos", + "type": "CPP" + }, + { + "name": "T _mach_port_allocate_full", + "type": "CPP" + }, + { + "name": "T _task_set_port_space", + "type": "CPP" + }, + { + "name": "T _mach_port_get_srights", + "type": "CPP" + }, + { + "name": "T _mach_port_space_info", + "type": "CPP" + }, + { + "name": "T _mach_port_space_basic_info", + "type": "CPP" + }, + { + "name": "T _mig_dealloc_special_reply_port", + "type": "CPP" + }, + { + "name": "T _mach_sync_ipc_link_monitoring_start", + "type": "CPP" + }, + { + "name": "T _mach_sync_ipc_link_monitoring_stop", + "type": "CPP" + }, + { + "name": "T _mach_port_dnrequest_info", + "type": "CPP" + }, + { + "name": "T _mach_port_kernel_object", + "type": "CPP" + }, + { + "name": "T _mach_port_kobject", + "type": "CPP" + }, + { + "name": "T _mach_port_kobject_description", + "type": "CPP" + }, + { + "name": "T _mach_port_unguard", + "type": "CPP" + }, + { + "name": "T _mach_port_guard_with_flags", + "type": "CPP" + }, + { + "name": "T _mach_port_swap_guard", + "type": "CPP" + }, + { + "name": "T _mach_port_is_connection_for_service", + "type": "CPP" + }, + { + "name": "T _mach_port_get_service_port_info", + "type": "CPP" + }, + { + "name": "T _mach_port_assert_attributes", + "type": "CPP" + }, + { + "name": "T _mach_vm_remap", + "type": "CPP" + }, + { + "name": "T _mach_vm_remap_new", + "type": "CPP" + }, + { + "name": "T _mach_vm_read", + "type": "CPP" + }, + { + "name": "T _vm_remap_new", + "type": "CPP" + }, + { + "name": "T _getaudit", + "type": "CPP" + }, + { + "name": "T _setaudit", + "type": "CPP" + }, + { + "name": "T _kpersona_alloc", + "type": "CPP" + }, + { + "name": "T _kpersona_palloc", + "type": "CPP" + }, + { + "name": "T _kpersona_dealloc", + "type": "CPP" + }, + { + "name": "T _kpersona_getpath", + "type": "CPP" + }, + { + "name": "T _kpersona_pidinfo", + "type": "CPP" + }, + { + "name": "T _kpersona_find", + "type": "CPP" + }, + { + "name": "T _kpersona_find_by_type", + "type": "CPP" + }, + { + "name": "T _clock_set_time", + "type": "CPP" + }, + { + "name": "T _clock_set_attributes", + "type": "CPP" + }, + { + "name": "T _clock_alarm_reply", + "type": "CPP" + }, + { + "name": "T _clock_get_attributes", + "type": "CPP" + }, + { + "name": "T _clock_alarm", + "type": "CPP" + }, + { + "name": "T _exception_raise", + "type": "CPP" + }, + { + "name": "T _exception_raise_state", + "type": "CPP" + }, + { + "name": "T _exception_raise_state_identity", + "type": "CPP" + }, + { + "name": "T _exc_server_routine", + "type": "CPP" + }, + { + "name": "t __Xexception_raise", + "type": "CPP" + }, + { + "name": "t __Xexception_raise_state", + "type": "CPP" + }, + { + "name": "t __Xexception_raise_state_identity", + "type": "CPP" + }, + { + "name": "T _exc_server", + "type": "CPP" + }, + { + "name": "T _host_get_boot_info", + "type": "CPP" + }, + { + "name": "T _host_reboot", + "type": "CPP" + }, + { + "name": "T _host_priv_statistics", + "type": "CPP" + }, + { + "name": "T _host_default_memory_manager", + "type": "CPP" + }, + { + "name": "T _vm_wire", + "type": "CPP" + }, + { + "name": "T _thread_wire", + "type": "CPP" + }, + { + "name": "T _vm_allocate_cpm", + "type": "CPP" + }, + { + "name": "T _host_processors", + "type": "CPP" + }, + { + "name": "T _host_get_clock_control", + "type": "CPP" + }, + { + "name": "T _kmod_create", + "type": "CPP" + }, + { + "name": "T _kmod_destroy", + "type": "CPP" + }, + { + "name": "T _kmod_control", + "type": "CPP" + }, + { + "name": "T _host_set_special_port", + "type": "CPP" + }, + { + "name": "T _host_set_exception_ports", + "type": "CPP" + }, + { + "name": "T _host_get_exception_ports", + "type": "CPP" + }, + { + "name": "T _host_swap_exception_ports", + "type": "CPP" + }, + { + "name": "T _mach_vm_wire", + "type": "CPP" + }, + { + "name": "T _host_processor_sets", + "type": "CPP" + }, + { + "name": "T _host_processor_set_priv", + "type": "CPP" + }, + { + "name": "T _host_set_UNDServer", + "type": "CPP" + }, + { + "name": "T _host_get_UNDServer", + "type": "CPP" + }, + { + "name": "T _kext_request", + "type": "CPP" + }, + { + "name": "T _host_security_create_task_token", + "type": "CPP" + }, + { + "name": "T _host_security_set_task_token", + "type": "CPP" + }, + { + "name": "T _host_kernel_version", + "type": "CPP" + }, + { + "name": "T __host_page_size", + "type": "CPP" + }, + { + "name": "T _mach_memory_object_memory_entry", + "type": "CPP" + }, + { + "name": "T _host_processor_info", + "type": "CPP" + }, + { + "name": "T _host_get_io_main", + "type": "CPP" + }, + { + "name": "T _kmod_get_info", + "type": "CPP" + }, + { + "name": "T _host_virtual_physical_table_info", + "type": "CPP" + }, + { + "name": "T _processor_set_default", + "type": "CPP" + }, + { + "name": "T _processor_set_create", + "type": "CPP" + }, + { + "name": "T _mach_memory_object_memory_entry_64", + "type": "CPP" + }, + { + "name": "T _host_lockgroup_info", + "type": "CPP" + }, + { + "name": "T _mach_zone_info", + "type": "CPP" + }, + { + "name": "T _mach_zone_force_gc", + "type": "CPP" + }, + { + "name": "T __kernelrpc_host_create_mach_voucher", + "type": "CPP" + }, + { + "name": "T _host_register_mach_voucher_attr_manager", + "type": "CPP" + }, + { + "name": "T _host_register_well_known_mach_voucher_attr_manager", + "type": "CPP" + }, + { + "name": "T _host_set_atm_diagnostic_flag", + "type": "CPP" + }, + { + "name": "T _mach_memory_info", + "type": "CPP" + }, + { + "name": "T _host_set_multiuser_config_flags", + "type": "CPP" + }, + { + "name": "T _mach_zone_info_for_zone", + "type": "CPP" + }, + { + "name": "T _mach_zone_info_for_largest_zone", + "type": "CPP" + }, + { + "name": "T _mach_zone_get_zlog_zones", + "type": "CPP" + }, + { + "name": "T _mach_zone_get_btlog_records", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_names", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_rename", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_allocate_name", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_allocate", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_destroy", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_deallocate", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_mod_refs", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_peek", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_set_mscount", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_move_member", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_insert_right", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_set_seqno", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_allocate_qos", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_allocate_full", + "type": "CPP" + }, + { + "name": "T __kernelrpc_task_set_port_space", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_srights", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_space_info", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_dnrequest_info", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_kernel_object", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_insert_member", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_extract_member", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_kobject", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_construct", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_destruct", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_guard", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_unguard", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_space_basic_info", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_special_reply_port_reset_link", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_guard_with_flags", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_swap_guard", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_kobject_description", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_is_connection_for_service", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_get_service_port_info", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_port_assert_attributes", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_allocate", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_deallocate", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_protect", + "type": "CPP" + }, + { + "name": "T _mach_vm_inherit", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_read", + "type": "CPP" + }, + { + "name": "T _mach_vm_read_list", + "type": "CPP" + }, + { + "name": "T _mach_vm_write", + "type": "CPP" + }, + { + "name": "T _mach_vm_msync", + "type": "CPP" + }, + { + "name": "T _mach_vm_behavior_set", + "type": "CPP" + }, + { + "name": "T _mach_vm_machine_attribute", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_remap", + "type": "CPP" + }, + { + "name": "T _mach_vm_page_query", + "type": "CPP" + }, + { + "name": "T _mach_make_memory_entry", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_purgable_control", + "type": "CPP" + }, + { + "name": "T _mach_vm_page_info", + "type": "CPP" + }, + { + "name": "T _mach_vm_page_range_query", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_vm_remap_new", + "type": "CPP" + }, + { + "name": "T _mach_vm_deferred_reclamation_buffer_init", + "type": "CPP" + }, + { + "name": "T _mach_vm_deferred_reclamation_buffer_synchronize", + "type": "CPP" + }, + { + "name": "T _mach_vm_deferred_reclamation_buffer_update_reclaimable_bytes", + "type": "CPP" + }, + { + "name": "T _mach_vm_range_create", + "type": "CPP" + }, + { + "name": "T _mach_notify_port_deleted", + "type": "CPP" + }, + { + "name": "T _mach_notify_port_destroyed", + "type": "CPP" + }, + { + "name": "T _mach_notify_no_senders", + "type": "CPP" + }, + { + "name": "T _mach_notify_send_once", + "type": "CPP" + }, + { + "name": "T _mach_notify_dead_name", + "type": "CPP" + }, + { + "name": "T _processor_set_statistics", + "type": "CPP" + }, + { + "name": "T _processor_set_destroy", + "type": "CPP" + }, + { + "name": "T _processor_set_max_priority", + "type": "CPP" + }, + { + "name": "T _processor_set_policy_enable", + "type": "CPP" + }, + { + "name": "T _processor_set_policy_disable", + "type": "CPP" + }, + { + "name": "T _processor_set_tasks", + "type": "CPP" + }, + { + "name": "T _processor_set_threads", + "type": "CPP" + }, + { + "name": "T _processor_set_policy_control", + "type": "CPP" + }, + { + "name": "T _processor_set_stack_usage", + "type": "CPP" + }, + { + "name": "T _processor_set_info", + "type": "CPP" + }, + { + "name": "T _processor_set_tasks_with_flavor", + "type": "CPP" + }, + { + "name": "T _processor_start", + "type": "CPP" + }, + { + "name": "T _processor_exit", + "type": "CPP" + }, + { + "name": "T _processor_info", + "type": "CPP" + }, + { + "name": "T _processor_control", + "type": "CPP" + }, + { + "name": "T _processor_assign", + "type": "CPP" + }, + { + "name": "T _processor_get_assignment", + "type": "CPP" + }, + { + "name": "T _netname_check_in", + "type": "CPP" + }, + { + "name": "T _netname_look_up", + "type": "CPP" + }, + { + "name": "T _netname_check_out", + "type": "CPP" + }, + { + "name": "T _netname_version", + "type": "CPP" + }, + { + "name": "T _task_create", + "type": "CPP" + }, + { + "name": "T _task_terminate", + "type": "CPP" + }, + { + "name": "T _task_suspend", + "type": "CPP" + }, + { + "name": "T _task_resume", + "type": "CPP" + }, + { + "name": "T _thread_create", + "type": "CPP" + }, + { + "name": "T _thread_create_running", + "type": "CPP" + }, + { + "name": "T _task_swap_exception_ports", + "type": "CPP" + }, + { + "name": "T _lock_set_create", + "type": "CPP" + }, + { + "name": "T _lock_set_destroy", + "type": "CPP" + }, + { + "name": "T _task_policy_get", + "type": "CPP" + }, + { + "name": "T _task_sample", + "type": "CPP" + }, + { + "name": "T _task_policy", + "type": "CPP" + }, + { + "name": "T _task_set_emulation", + "type": "CPP" + }, + { + "name": "T _task_get_emulation_vector", + "type": "CPP" + }, + { + "name": "T _task_set_emulation_vector", + "type": "CPP" + }, + { + "name": "T _task_set_ras_pc", + "type": "CPP" + }, + { + "name": "T _task_zone_info", + "type": "CPP" + }, + { + "name": "T _task_assign", + "type": "CPP" + }, + { + "name": "T _task_assign_default", + "type": "CPP" + }, + { + "name": "T _task_get_assignment", + "type": "CPP" + }, + { + "name": "T _task_set_policy", + "type": "CPP" + }, + { + "name": "T _task_get_state", + "type": "CPP" + }, + { + "name": "T _task_set_state", + "type": "CPP" + }, + { + "name": "T _task_set_phys_footprint_limit", + "type": "CPP" + }, + { + "name": "T _task_suspend2", + "type": "CPP" + }, + { + "name": "T _task_resume2", + "type": "CPP" + }, + { + "name": "T _task_purgable_info", + "type": "CPP" + }, + { + "name": "T _task_get_mach_voucher", + "type": "CPP" + }, + { + "name": "T _task_set_mach_voucher", + "type": "CPP" + }, + { + "name": "T _task_swap_mach_voucher", + "type": "CPP" + }, + { + "name": "T _task_generate_corpse", + "type": "CPP" + }, + { + "name": "T _task_map_corpse_info", + "type": "CPP" + }, + { + "name": "T _task_register_dyld_image_infos", + "type": "CPP" + }, + { + "name": "T _task_unregister_dyld_image_infos", + "type": "CPP" + }, + { + "name": "T _task_get_dyld_image_infos", + "type": "CPP" + }, + { + "name": "T _task_register_dyld_shared_cache_image_info", + "type": "CPP" + }, + { + "name": "T _task_register_dyld_set_dyld_state", + "type": "CPP" + }, + { + "name": "T _task_register_dyld_get_process_state", + "type": "CPP" + }, + { + "name": "T _task_map_corpse_info_64", + "type": "CPP" + }, + { + "name": "T _task_inspect", + "type": "CPP" + }, + { + "name": "T _task_get_exc_guard_behavior", + "type": "CPP" + }, + { + "name": "T _task_set_exc_guard_behavior", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_task_is_self", + "type": "CPP" + }, + { + "name": "T _task_dyld_process_info_notify_register", + "type": "CPP" + }, + { + "name": "T _task_create_identity_token", + "type": "CPP" + }, + { + "name": "T _task_identity_token_get_task_port", + "type": "CPP" + }, + { + "name": "T _task_dyld_process_info_notify_deregister", + "type": "CPP" + }, + { + "name": "T _task_get_exception_ports_info", + "type": "CPP" + }, + { + "name": "T _task_test_sync_upcall", + "type": "CPP" + }, + { + "name": "T _task_set_corpse_forking_behavior", + "type": "CPP" + }, + { + "name": "T _task_test_async_upcall_propagation", + "type": "CPP" + }, + { + "name": "T _task_map_kcdata_object_64", + "type": "CPP" + }, + { + "name": "T _thread_terminate", + "type": "CPP" + }, + { + "name": "T _act_get_state", + "type": "CPP" + }, + { + "name": "T _act_set_state", + "type": "CPP" + }, + { + "name": "T _thread_set_state", + "type": "CPP" + }, + { + "name": "T _thread_suspend", + "type": "CPP" + }, + { + "name": "T _thread_resume", + "type": "CPP" + }, + { + "name": "T _thread_abort", + "type": "CPP" + }, + { + "name": "T _thread_abort_safely", + "type": "CPP" + }, + { + "name": "T _thread_depress_abort", + "type": "CPP" + }, + { + "name": "T _thread_get_special_port", + "type": "CPP" + }, + { + "name": "T _thread_set_special_port", + "type": "CPP" + }, + { + "name": "T _thread_swap_exception_ports", + "type": "CPP" + }, + { + "name": "T _thread_sample", + "type": "CPP" + }, + { + "name": "T _etap_trace_thread", + "type": "CPP" + }, + { + "name": "T _thread_assign", + "type": "CPP" + }, + { + "name": "T _thread_assign_default", + "type": "CPP" + }, + { + "name": "T _thread_get_assignment", + "type": "CPP" + }, + { + "name": "T __kernelrpc_thread_set_policy", + "type": "CPP" + }, + { + "name": "T _thread_get_mach_voucher", + "type": "CPP" + }, + { + "name": "T _thread_set_mach_voucher", + "type": "CPP" + }, + { + "name": "T _thread_swap_mach_voucher", + "type": "CPP" + }, + { + "name": "T _thread_convert_thread_state", + "type": "CPP" + }, + { + "name": "T _thread_get_exception_ports_info", + "type": "CPP" + }, + { + "name": "T _vm_inherit", + "type": "CPP" + }, + { + "name": "T _vm_read_list", + "type": "CPP" + }, + { + "name": "T _vm_write", + "type": "CPP" + }, + { + "name": "T _vm_read_overwrite", + "type": "CPP" + }, + { + "name": "T _vm_msync", + "type": "CPP" + }, + { + "name": "T _vm_behavior_set", + "type": "CPP" + }, + { + "name": "T _vm_machine_attribute", + "type": "CPP" + }, + { + "name": "T _vm_map_page_query", + "type": "CPP" + }, + { + "name": "T __kernelrpc_vm_purgable_control", + "type": "CPP" + }, + { + "name": "T __kernelrpc_vm_remap_new", + "type": "CPP" + }, + { + "name": "T _mach_memory_entry_purgable_control", + "type": "CPP" + }, + { + "name": "T _mach_memory_entry_access_tracking", + "type": "CPP" + }, + { + "name": "T _mach_memory_entry_ownership", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_create", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_destroy", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_associate", + "type": "CPP" + }, + { + "name": "T _mach_eventlink_disassociate", + "type": "CPP" + }, + { + "name": "T __kernelrpc_mach_voucher_extract_attr_recipe", + "type": "CPP" + }, + { + "name": "T _mach_voucher_extract_all_attr_recipes", + "type": "CPP" + }, + { + "name": "T _mach_voucher_debug_info", + "type": "CPP" + }, + { + "name": "t _abort", + "type": "CPP" + }, + { + "name": "t _abort.561", + "type": "CPP" + }, + { + "name": "t _abort.563", + "type": "CPP" + }, + { + "name": "t _abort.580", + "type": "CPP" + }, + { + "name": "T _abort_with_reason", + "type": "CPP" + }, + { + "name": "t _abort_with_payload_wrapper_internal", + "type": "CPP" + }, + { + "name": "T _abort_with_payload", + "type": "CPP" + }, + { + "name": "S ____kernelVersionString", + "type": "CPP" + }, + { + "name": "S ____kernelVersionNumber", + "type": "CPP" + }, + { + "name": "s __libkernel_voucher_functions_empty", + "type": "CPP" + }, + { + "name": "s ___kernelVersionString", + "type": "CPP" + }, + { + "name": "s ___kernelVersionNumber", + "type": "CPP" + }, + { + "name": "s _err_us_sub", + "type": "CPP" + }, + { + "name": "s _err_iokit_sub_map", + "type": "CPP" + }, + { + "name": "s _err_codes_iokit_common_map", + "type": "CPP" + }, + { + "name": "s _err_codes_iokit_usb_map", + "type": "CPP" + }, + { + "name": "s _err_codes_iokit_fw_map", + "type": "CPP" + }, + { + "name": "s _times_now", + "type": "CPP" + }, + { + "name": "/usr/lib/system/libsystem_platform.dylib", + "type": "SHARED_LIB" + }, + { + "name": "T _os_unfair_lock_lock_with_options", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_unlock", + "type": "CPP" + }, + { + "name": "T _os_unfair_recursive_lock_lock_with_options", + "type": "CPP" + }, + { + "name": "T __platform_strcmp", + "type": "CPP" + }, + { + "name": "T _os_unfair_recursive_lock_unlock", + "type": "CPP" + }, + { + "name": "T __platform_strncmp", + "type": "CPP" + }, + { + "name": "T __platform_strnlen", + "type": "CPP" + }, + { + "name": "T __platform_strlen", + "type": "CPP" + }, + { + "name": "T __os_once", + "type": "CPP" + }, + { + "name": "t __os_once_callout", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_lock", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_assert_owner", + "type": "CPP" + }, + { + "name": "T _ffs", + "type": "CPP" + }, + { + "name": "T _ffsll", + "type": "CPP" + }, + { + "name": "T _fls", + "type": "CPP" + }, + { + "name": "T _flsll", + "type": "CPP" + }, + { + "name": "T __os_alloc_once", + "type": "CPP" + }, + { + "name": "t __os_alloc", + "type": "CPP" + }, + { + "name": "T __platform_strcpy", + "type": "CPP" + }, + { + "name": "T __platform_memchr", + "type": "CPP" + }, + { + "name": "T __platform_memcmp", + "type": "CPP" + }, + { + "name": "T _OSAtomicDequeue", + "type": "CPP" + }, + { + "name": "T __platform_strlcpy", + "type": "CPP" + }, + { + "name": "T __platform_memset_pattern4", + "type": "CPP" + }, + { + "name": "T __platform_memset_pattern8", + "type": "CPP" + }, + { + "name": "T __platform_memset_pattern16", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_assert_not_owner", + "type": "CPP" + }, + { + "name": "T _OSAtomicEnqueue", + "type": "CPP" + }, + { + "name": "t __os_unfair_lock_lock_slow", + "type": "CPP" + }, + { + "name": "t __os_unfair_lock_unlock_slow", + "type": "CPP" + }, + { + "name": "T __platform_strstr", + "type": "CPP" + }, + { + "name": "T __platform_strncpy", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_trylock", + "type": "CPP" + }, + { + "name": "T __os_nospin_lock_lock", + "type": "CPP" + }, + { + "name": "T __os_nospin_lock_unlock", + "type": "CPP" + }, + { + "name": "T __os_nospin_lock_trylock", + "type": "CPP" + }, + { + "name": "T _os_unfair_recursive_lock_tryunlock4objc", + "type": "CPP" + }, + { + "name": "T __setjmp", + "type": "CPP" + }, + { + "name": "T __longjmp", + "type": "CPP" + }, + { + "name": "T _sigsetjmp", + "type": "CPP" + }, + { + "name": "T _setjmp", + "type": "CPP" + }, + { + "name": "T _siglongjmp", + "type": "CPP" + }, + { + "name": "T _longjmp", + "type": "CPP" + }, + { + "name": "T __platform_strlcat", + "type": "CPP" + }, + { + "name": "T __simple_salloc", + "type": "CPP" + }, + { + "name": "T __simple_vsprintf", + "type": "CPP" + }, + { + "name": "T __simple_sprintf", + "type": "CPP" + }, + { + "name": "t _hex", + "type": "CPP" + }, + { + "name": "T __simple_string", + "type": "CPP" + }, + { + "name": "T __simple_sfree", + "type": "CPP" + }, + { + "name": "t _dec", + "type": "CPP" + }, + { + "name": "T __simple_asl_log", + "type": "CPP" + }, + { + "name": "T __simple_asl_log_prog", + "type": "CPP" + }, + { + "name": "T __simple_asl_msg_new", + "type": "CPP" + }, + { + "name": "T __simple_asl_msg_set", + "type": "CPP" + }, + { + "name": "T __simple_esprintf", + "type": "CPP" + }, + { + "name": "t __simple_asl_escape_key", + "type": "CPP" + }, + { + "name": "t __simple_asl_escape_val", + "type": "CPP" + }, + { + "name": "T __simple_sappend", + "type": "CPP" + }, + { + "name": "T __simple_sresize", + "type": "CPP" + }, + { + "name": "T __simple_asl_send", + "type": "CPP" + }, + { + "name": "t __simple_asl_connect_once", + "type": "CPP" + }, + { + "name": "t _udec", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwap64", + "type": "CPP" + }, + { + "name": "T _os_unfair_recursive_lock_trylock", + "type": "CPP" + }, + { + "name": "T __os_semaphore_create", + "type": "CPP" + }, + { + "name": "T __os_semaphore_dispose", + "type": "CPP" + }, + { + "name": "T ___platform_sigaction", + "type": "CPP" + }, + { + "name": "t __os_once_gate_wait", + "type": "CPP" + }, + { + "name": "t __os_once_gate_broadcast", + "type": "CPP" + }, + { + "name": "t __os_nospin_lock_lock_slow", + "type": "CPP" + }, + { + "name": "t __os_nospin_lock_unlock_slow", + "type": "CPP" + }, + { + "name": "T _OSAtomicIncrement32", + "type": "CPP" + }, + { + "name": "T _OSAtomicDecrement32", + "type": "CPP" + }, + { + "name": "T ___libplatform_init", + "type": "CPP" + }, + { + "name": "t ___pfz_setup", + "type": "CPP" + }, + { + "name": "T __simple_getenv", + "type": "CPP" + }, + { + "name": "T __platform_bzero", + "type": "CPP" + }, + { + "name": "T __platform_memset", + "type": "CPP" + }, + { + "name": "t __simple_asl_init", + "type": "CPP" + }, + { + "name": "t __os_alloc_slow", + "type": "CPP" + }, + { + "name": "t __simple_asl_init_context", + "type": "CPP" + }, + { + "name": "T __platform_memmove", + "type": "CPP" + }, + { + "name": "T __platform_strchr", + "type": "CPP" + }, + { + "name": "T _spin_lock", + "type": "CPP" + }, + { + "name": "T _spin_unlock", + "type": "CPP" + }, + { + "name": "T _OSAtomicIncrement64", + "type": "CPP" + }, + { + "name": "t __sigtramp", + "type": "CPP" + }, + { + "name": "T _os_lock_lock", + "type": "CPP" + }, + { + "name": "t __os_lock_handoff_lock", + "type": "CPP" + }, + { + "name": "T _os_lock_unlock", + "type": "CPP" + }, + { + "name": "t __os_lock_handoff_unlock", + "type": "CPP" + }, + { + "name": "t __os_lock_handoff_lock_slow", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwap32", + "type": "CPP" + }, + { + "name": "T _OSAtomicAdd32", + "type": "CPP" + }, + { + "name": "t __os_lock_unfair_lock", + "type": "CPP" + }, + { + "name": "t __os_lock_spin_lock", + "type": "CPP" + }, + { + "name": "t __os_lock_spin_unlock", + "type": "CPP" + }, + { + "name": "T _OSMemoryBarrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwap64Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwap32Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwapPtrBarrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicOr32Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicXor32Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicAdd32Barrier", + "type": "CPP" + }, + { + "name": "T __os_semaphore_signal", + "type": "CPP" + }, + { + "name": "T __os_semaphore_wait", + "type": "CPP" + }, + { + "name": "T _OSAtomicIncrement32Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicDecrement32Barrier", + "type": "CPP" + }, + { + "name": "T __OSSpinLockLockSlow", + "type": "CPP" + }, + { + "name": "T _OSAtomicAdd64", + "type": "CPP" + }, + { + "name": "T _OSSpinLockTry", + "type": "CPP" + }, + { + "name": "T _OSAtomicAnd32OrigBarrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwapLongBarrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicTestAndSetBarrier", + "type": "CPP" + }, + { + "name": "T _os_lock_trylock", + "type": "CPP" + }, + { + "name": "t __os_lock_handoff_trylock", + "type": "CPP" + }, + { + "name": "T _OSAtomicIncrement64Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwapInt", + "type": "CPP" + }, + { + "name": "T _OSAtomicOr32", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwapLong", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwapPtr", + "type": "CPP" + }, + { + "name": "T _OSAtomicAnd32", + "type": "CPP" + }, + { + "name": "T _OSAtomicDecrement64Barrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicTestAndClear", + "type": "CPP" + }, + { + "name": "T _OSAtomicDecrement64", + "type": "CPP" + }, + { + "name": "T _OSAtomicAdd64Barrier", + "type": "CPP" + }, + { + "name": "t __sigunaltstack", + "type": "CPP" + }, + { + "name": "T _OSAtomicOr32Orig", + "type": "CPP" + }, + { + "name": "T _OSAtomicCompareAndSwapIntBarrier", + "type": "CPP" + }, + { + "name": "T __simple_vesprintf", + "type": "CPP" + }, + { + "name": "t ___simple_bprintf", + "type": "CPP" + }, + { + "name": "T __simple_esappend", + "type": "CPP" + }, + { + "name": "T _OSAtomicAnd32Orig", + "type": "CPP" + }, + { + "name": "T _OSAtomicTestAndSet", + "type": "CPP" + }, + { + "name": "T _OSAtomicTestAndClearBarrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicAnd32Barrier", + "type": "CPP" + }, + { + "name": "T _os_log_simple_now", + "type": "CPP" + }, + { + "name": "T _os_log_simple_type_from_asl", + "type": "CPP" + }, + { + "name": "T ___os_log_simple_offset", + "type": "CPP" + }, + { + "name": "T __os_log_simple_send", + "type": "CPP" + }, + { + "name": "T __os_log_simple", + "type": "CPP" + }, + { + "name": "T __os_log_simple_shim", + "type": "CPP" + }, + { + "name": "T __os_log_simple_parse_type", + "type": "CPP" + }, + { + "name": "T __os_log_simple_parse_subsystem", + "type": "CPP" + }, + { + "name": "T __os_log_simple_parse_message", + "type": "CPP" + }, + { + "name": "T __os_log_simple_parse_timestamp", + "type": "CPP" + }, + { + "name": "T __os_log_simple_parse_identifiers", + "type": "CPP" + }, + { + "name": "T __os_log_simple_parse", + "type": "CPP" + }, + { + "name": "T __os_log_simple_reinit_4launchd", + "type": "CPP" + }, + { + "name": "t __simple_asl_connect", + "type": "CPP" + }, + { + "name": "T __simple_asl_get_fd", + "type": "CPP" + }, + { + "name": "T __simple_vdprintf", + "type": "CPP" + }, + { + "name": "t __flush_reset", + "type": "CPP" + }, + { + "name": "t __flush", + "type": "CPP" + }, + { + "name": "T __simple_dprintf", + "type": "CPP" + }, + { + "name": "t __enlarge", + "type": "CPP" + }, + { + "name": "T __simple_put", + "type": "CPP" + }, + { + "name": "T __simple_putline", + "type": "CPP" + }, + { + "name": "t _oct", + "type": "CPP" + }, + { + "name": "t _ydec", + "type": "CPP" + }, + { + "name": "T _OSAtomicFifoEnqueue", + "type": "CPP" + }, + { + "name": "T _OSAtomicFifoDequeue", + "type": "CPP" + }, + { + "name": "T _sys_cache_control", + "type": "CPP" + }, + { + "name": "T _sys_icache_invalidate", + "type": "CPP" + }, + { + "name": "t _cpus_that_need_dsb_for_ic_ivau", + "type": "CPP" + }, + { + "name": "T _sys_dcache_flush", + "type": "CPP" + }, + { + "name": "t __OSSpinLockLockYield", + "type": "CPP" + }, + { + "name": "T _spin_lock_try", + "type": "CPP" + }, + { + "name": "t __os_lock_spin_trylock", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_trylock_with_options", + "type": "CPP" + }, + { + "name": "t __os_unfair_lock_trylock_with_options_slow", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_lock_no_tsd", + "type": "CPP" + }, + { + "name": "T _os_unfair_lock_unlock_no_tsd", + "type": "CPP" + }, + { + "name": "T _os_unfair_recursive_lock_owned", + "type": "CPP" + }, + { + "name": "T _os_unfair_recursive_lock_unlock_forked_child", + "type": "CPP" + }, + { + "name": "t __os_lock_unfair_trylock", + "type": "CPP" + }, + { + "name": "t __os_lock_unfair_unlock", + "type": "CPP" + }, + { + "name": "t __os_lock_nospin_lock", + "type": "CPP" + }, + { + "name": "t __os_lock_nospin_trylock", + "type": "CPP" + }, + { + "name": "t __os_lock_nospin_unlock", + "type": "CPP" + }, + { + "name": "T ___os_once_reset", + "type": "CPP" + }, + { + "name": "T _os_sync_wait_on_address_with_deadline", + "type": "CPP" + }, + { + "name": "T _os_sync_wait_on_address_with_timeout", + "type": "CPP" + }, + { + "name": "T _os_sync_wait_on_address", + "type": "CPP" + }, + { + "name": "T _os_sync_wake_by_address_any", + "type": "CPP" + }, + { + "name": "T _os_sync_wake_by_address_all", + "type": "CPP" + }, + { + "name": "T _OSAtomicOr32OrigBarrier", + "type": "CPP" + }, + { + "name": "T _OSAtomicXor32", + "type": "CPP" + }, + { + "name": "T _OSAtomicXor32Orig", + "type": "CPP" + }, + { + "name": "T _OSAtomicXor32OrigBarrier", + "type": "CPP" + }, + { + "name": "t __OSAtomicEnqueue_misalign", + "type": "CPP" + }, + { + "name": "t __OSAtomicDequeue_misalign", + "type": "CPP" + }, + { + "name": "t _memset", + "type": "CPP" + }, + { + "name": "T __platform_memccpy", + "type": "CPP" + }, + { + "name": "T __platform_memcmp_zero_aligned8", + "type": "CPP" + }, + { + "name": "T _swapcontext", + "type": "CPP" + }, + { + "name": "T __ctx_done", + "type": "CPP" + }, + { + "name": "/usr/lib/system/libsystem_pthread.dylib", + "type": "SHARED_LIB" + }, + { + "name": "T __pthread_exit_if_canceled", + "type": "CPP" + }, + { + "name": "T ___pthread_init", + "type": "CPP" + }, + { + "name": "t __pthread_strtoul", + "type": "CPP" + }, + { + "name": "t __pthread_main_thread_init", + "type": "CPP" + }, + { + "name": "t __pthread_bsdthread_init", + "type": "CPP" + }, + { + "name": "t __pthread_set_main_qos", + "type": "CPP" + }, + { + "name": "t __pthread_key_global_init", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_global_init", + "type": "CPP" + }, + { + "name": "T _pthread_key_init_np", + "type": "CPP" + }, + { + "name": "T _pthread_key_create", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_lock", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_lock_init_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_check_init_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_firstfit_lock_slow", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_unlock", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_unlock_init_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_firstfit_unlock_slow", + "type": "CPP" + }, + { + "name": "T _qos_class_main", + "type": "CPP" + }, + { + "name": "T _start_wqthread", + "type": "CPP" + }, + { + "name": "T _thread_start", + "type": "CPP" + }, + { + "name": "T _thread_chkstk_darwin", + "type": "CPP" + }, + { + "name": "T _pthread_getspecific", + "type": "CPP" + }, + { + "name": "T _pthread_setspecific", + "type": "CPP" + }, + { + "name": "T _pthread_cond_broadcast", + "type": "CPP" + }, + { + "name": "t __pthread_cond_check_init_slow", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_destroy", + "type": "CPP" + }, + { + "name": "T _pthread_atfork", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_init", + "type": "CPP" + }, + { + "name": "T _pthread_self", + "type": "CPP" + }, + { + "name": "T _pthread_mach_thread_np", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_init", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_settype", + "type": "CPP" + }, + { + "name": "T _pthread_main_np", + "type": "CPP" + }, + { + "name": "T _pthread_equal", + "type": "CPP" + }, + { + "name": "T _pthread_attr_init", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setscope", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setdetachstate", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getschedparam", + "type": "CPP" + }, + { + "name": "T _pthread_main_thread_np", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_destroy", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_supported", + "type": "CPP" + }, + { + "name": "T _pthread_workqueue_setup", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getschedpolicy", + "type": "CPP" + }, + { + "name": "T __pthread_qos_class_encode", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_set_event_manager_priority", + "type": "CPP" + }, + { + "name": "T _pthread_once", + "type": "CPP" + }, + { + "name": "t ___pthread_once_handler", + "type": "CPP" + }, + { + "name": "T _pthread_qos_max_parallelism", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_addthreads", + "type": "CPP" + }, + { + "name": "T __pthread_wqthread", + "type": "CPP" + }, + { + "name": "t __pthread_wqthread_setup", + "type": "CPP" + }, + { + "name": "T _pthread_rwlock_rdlock", + "type": "CPP" + }, + { + "name": "t __pthread_rwlock_lock_slow", + "type": "CPP" + }, + { + "name": "t __pthread_rwlock_check_init_slow", + "type": "CPP" + }, + { + "name": "T _pthread_rwlock_unlock", + "type": "CPP" + }, + { + "name": "T _pthread_rwlock_wrlock", + "type": "CPP" + }, + { + "name": "T _pthread_create", + "type": "CPP" + }, + { + "name": "t __pthread_markcancel_if_canceled", + "type": "CPP" + }, + { + "name": "T _pthread_set_qos_class_self_np", + "type": "CPP" + }, + { + "name": "T __pthread_set_properties_self", + "type": "CPP" + }, + { + "name": "T _pthread_setname_np", + "type": "CPP" + }, + { + "name": "T _pthread_cond_wait", + "type": "CPP" + }, + { + "name": "T _pthread_testcancel", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_droplock", + "type": "CPP" + }, + { + "name": "T _sched_yield", + "type": "CPP" + }, + { + "name": "t __pthread_cond_updateval", + "type": "CPP" + }, + { + "name": "T _pthread_cond_timedwait", + "type": "CPP" + }, + { + "name": "T _pthread_get_stackaddr_np", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_override_start_direct", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_firstfit_lock_wait", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_firstfit_wake", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_override_reset", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_should_narrow", + "type": "CPP" + }, + { + "name": "T _pthread_get_stacksize_np", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_trylock", + "type": "CPP" + }, + { + "name": "T _pthread_rwlock_init", + "type": "CPP" + }, + { + "name": "T __pthread_qos_class_decode", + "type": "CPP" + }, + { + "name": "t __pthread_wqthread_exit", + "type": "CPP" + }, + { + "name": "T _pthread_exit", + "type": "CPP" + }, + { + "name": "t __pthread_setcancelstate_exit", + "type": "CPP" + }, + { + "name": "t __pthread_tsd_cleanup", + "type": "CPP" + }, + { + "name": "t __pthread_terminate_invoke", + "type": "CPP" + }, + { + "name": "t __pthread_terminate", + "type": "CPP" + }, + { + "name": "T _pthread_cond_init", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getstacksize", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setstacksize", + "type": "CPP" + }, + { + "name": "T _pthread_attr_destroy", + "type": "CPP" + }, + { + "name": "T _pthread_getschedparam", + "type": "CPP" + }, + { + "name": "T _pthread_setschedparam", + "type": "CPP" + }, + { + "name": "T __pthread_clear_qos_tsd", + "type": "CPP" + }, + { + "name": "T _pthread_cond_destroy", + "type": "CPP" + }, + { + "name": "T _qos_class_self", + "type": "CPP" + }, + { + "name": "T _pthread_stack_frame_decode_np", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_override_start_direct_check_owner", + "type": "CPP" + }, + { + "name": "T _pthread_rwlock_trywrlock", + "type": "CPP" + }, + { + "name": "T _pthread_attr_set_qos_class_np", + "type": "CPP" + }, + { + "name": "t __pthread_rwlock_lock_wait", + "type": "CPP" + }, + { + "name": "t __pthread_rwlock_unlock_slow", + "type": "CPP" + }, + { + "name": "t __pthread_rwlock_unlock_drop", + "type": "CPP" + }, + { + "name": "T __pthread_qos_override_end_direct", + "type": "CPP" + }, + { + "name": "T _pthread_cond_timedwait_relative_np", + "type": "CPP" + }, + { + "name": "T _pthread_rwlock_destroy", + "type": "CPP" + }, + { + "name": "T _pthread_getname_np", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setschedpolicy", + "type": "CPP" + }, + { + "name": "T __pthread_workloop_create", + "type": "CPP" + }, + { + "name": "T _pthread_threadid_np", + "type": "CPP" + }, + { + "name": "T _pthread_get_qos_class_np", + "type": "CPP" + }, + { + "name": "T _pthread_override_qos_class_start_np", + "type": "CPP" + }, + { + "name": "T _pthread_cond_signal", + "type": "CPP" + }, + { + "name": "T _pthread_setcanceltype", + "type": "CPP" + }, + { + "name": "T _pthread_set_fixedpriority_self", + "type": "CPP" + }, + { + "name": "T _pthread_sigmask", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setschedparam", + "type": "CPP" + }, + { + "name": "T _pthread_attr_get_qos_class_np", + "type": "CPP" + }, + { + "name": "T _pthread_override_qos_class_end_np", + "type": "CPP" + }, + { + "name": "T _pthread_detach", + "type": "CPP" + }, + { + "name": "T __pthread_atfork_prepare_handlers", + "type": "CPP" + }, + { + "name": "T _pthread_is_threaded_np", + "type": "CPP" + }, + { + "name": "T __pthread_atfork_prepare", + "type": "CPP" + }, + { + "name": "T __pthread_atfork_parent", + "type": "CPP" + }, + { + "name": "T __pthread_atfork_parent_handlers", + "type": "CPP" + }, + { + "name": "t __pthread_current_stack_address", + "type": "CPP" + }, + { + "name": "T _pthread_key_delete", + "type": "CPP" + }, + { + "name": "T __pthread_qos_override_start_direct", + "type": "CPP" + }, + { + "name": "T _pthread_join", + "type": "CPP" + }, + { + "name": "t __pthread_joiner_prepost_wake", + "type": "CPP" + }, + { + "name": "t __pthread_joiner_wake", + "type": "CPP" + }, + { + "name": "t __pthread_deallocate", + "type": "CPP" + }, + { + "name": "T _pthread_kill", + "type": "CPP" + }, + { + "name": "T _pthread_set_timeshare_self", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_init_with_workloop", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setinheritsched", + "type": "CPP" + }, + { + "name": "T _pthread_fchdir_np", + "type": "CPP" + }, + { + "name": "T _pthread_rwlockattr_init", + "type": "CPP" + }, + { + "name": "T _pthread_rwlockattr_destroy", + "type": "CPP" + }, + { + "name": "T _sched_get_priority_max", + "type": "CPP" + }, + { + "name": "T __pthread_set_self", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_init", + "type": "CPP" + }, + { + "name": "T __pthread_qos_class_encode_workqueue", + "type": "CPP" + }, + { + "name": "T __pthread_override_qos_class_start_direct", + "type": "CPP" + }, + { + "name": "T __pthread_start", + "type": "CPP" + }, + { + "name": "T __pthread_override_qos_class_end_direct", + "type": "CPP" + }, + { + "name": "t __pthread_cond_wait", + "type": "CPP" + }, + { + "name": "t __pthread_exit", + "type": "CPP" + }, + { + "name": "T _pthread_join$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_setpshared", + "type": "CPP" + }, + { + "name": "T __pthread_fork_prepare", + "type": "CPP" + }, + { + "name": "T __pthread_fork_parent", + "type": "CPP" + }, + { + "name": "T _sigwait", + "type": "CPP" + }, + { + "name": "T _pthread_workqueue_setdispatch_np", + "type": "CPP" + }, + { + "name": "T _sched_get_priority_min", + "type": "CPP" + }, + { + "name": "T _pthread_setcancelstate", + "type": "CPP" + }, + { + "name": "T _pthread_set_qos_class_np", + "type": "CPP" + }, + { + "name": "t __pthread_globals_init", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getdetachstate", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getinheritsched", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getscope", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getstackaddr", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setstackaddr", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getstack", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setstack", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setguardsize", + "type": "CPP" + }, + { + "name": "T _pthread_attr_getguardsize", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setcpupercent_np", + "type": "CPP" + }, + { + "name": "T _pthread_attr_setworkinterval_np", + "type": "CPP" + }, + { + "name": "T _pthread_from_mach_thread_np", + "type": "CPP" + }, + { + "name": "t __pthread_threadid_slow", + "type": "CPP" + }, + { + "name": "T _pthread_cpu_number_np", + "type": "CPP" + }, + { + "name": "T _pthread_jit_write_protect_np", + "type": "CPP" + }, + { + "name": "T _pthread_jit_write_protect_supported_np", + "type": "CPP" + }, + { + "name": "T _pthread_jit_write_with_callback_np", + "type": "CPP" + }, + { + "name": "T _pthread_jit_write_freeze_callbacks_np", + "type": "CPP" + }, + { + "name": "t __pthread_jit_write_protect_freeze_config", + "type": "CPP" + }, + { + "name": "t __pthread_create", + "type": "CPP" + }, + { + "name": "T _pthread_create_from_mach_thread", + "type": "CPP" + }, + { + "name": "T _pthread_create_suspended_np", + "type": "CPP" + }, + { + "name": "T _pthread_install_workgroup_functions_np", + "type": "CPP" + }, + { + "name": "T _pthread_create_with_workgroup_np", + "type": "CPP" + }, + { + "name": "T ___pthread_workqueue_setkill", + "type": "CPP" + }, + { + "name": "T _pthread_self_is_exiting_np", + "type": "CPP" + }, + { + "name": "T _pthread_getconcurrency", + "type": "CPP" + }, + { + "name": "T _pthread_setconcurrency", + "type": "CPP" + }, + { + "name": "T ___pthread_late_init", + "type": "CPP" + }, + { + "name": "t __pthread_introspection_thread_start", + "type": "CPP" + }, + { + "name": "t __pthread_main_thread_postfork_init", + "type": "CPP" + }, + { + "name": "T __pthread_yield_to_enqueuer_4dispatch", + "type": "CPP" + }, + { + "name": "T _pthread_current_stack_contains_np", + "type": "CPP" + }, + { + "name": "t __pthread_wqthread_legacy_worker_wrap", + "type": "CPP" + }, + { + "name": "T _pthread_workqueue_setdispatchoffset_np", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_init_with_kevent", + "type": "CPP" + }, + { + "name": "T _pthread_workqueue_addthreads_np", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_add_cooperativethreads", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_allow_send_signals", + "type": "CPP" + }, + { + "name": "T __pthread_workloop_destroy", + "type": "CPP" + }, + { + "name": "T _pthread_introspection_hook_install", + "type": "CPP" + }, + { + "name": "t _bzero", + "type": "CPP" + }, + { + "name": "t __pthread_introspection_hook_callout_thread_create", + "type": "CPP" + }, + { + "name": "t __pthread_introspection_hook_callout_thread_terminate", + "type": "CPP" + }, + { + "name": "t __pthread_jit_write_protect_bulk_image_load_callback", + "type": "CPP" + }, + { + "name": "t __pthread_introspection_hook_callout_thread_start", + "type": "CPP" + }, + { + "name": "t __pthread_introspection_hook_callout_thread_destroy", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_0", + "type": "CPP" + }, + { + "name": "T _pthread_cancel", + "type": "CPP" + }, + { + "name": "t __pthread_join", + "type": "CPP" + }, + { + "name": "T _pthread_cond_wait$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _pthread_cond_timedwait$NOCANCEL", + "type": "CPP" + }, + { + "name": "T _sigwait$NOCANCEL", + "type": "CPP" + }, + { + "name": "t __pthread_joiner_abort_wait", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_0", + "type": "CPP" + }, + { + "name": "T _pthread_condattr_init", + "type": "CPP" + }, + { + "name": "T _pthread_condattr_destroy", + "type": "CPP" + }, + { + "name": "T _pthread_condattr_getpshared", + "type": "CPP" + }, + { + "name": "T _pthread_condattr_setpshared", + "type": "CPP" + }, + { + "name": "T _pthread_cond_signal_thread_np", + "type": "CPP" + }, + { + "name": "t __pthread_ulock_cond_wait_complete", + "type": "CPP" + }, + { + "name": "t __pthread_ulock_cond_cleanup", + "type": "CPP" + }, + { + "name": "t __pthread_psynch_cond_cleanup", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_0", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_1", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_2", + "type": "CPP" + }, + { + "name": "t _mutex_seq_atomic_cmpxchgv_relaxed", + "type": "CPP" + }, + { + "name": "t _mutex_seq_atomic_cmpxchgv_acquire", + "type": "CPP" + }, + { + "name": "t _mutex_seq_atomic_cmpxchgv_release", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_getprioceiling", + "type": "CPP" + }, + { + "name": "T _pthread_mutex_setprioceiling", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_getprioceiling", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_getprotocol", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_getpolicy_np", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_gettype", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_getpshared", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_setprioceiling", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_setprotocol", + "type": "CPP" + }, + { + "name": "T _pthread_mutexattr_setpolicy_np", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_fairshare_lock_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_fairshare_lock_wait", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_fairshare_unlock_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_fairshare_unlock_drop", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_ulock_lock", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_ulock_lock_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_ulock_unlock", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_ulock_unlock_slow", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_fairshare_unlock", + "type": "CPP" + }, + { + "name": "T __pthread_mutex_enable_legacy_mode", + "type": "CPP" + }, + { + "name": "t __pthread_mutex_fairshare_lock", + "type": "CPP" + }, + { + "name": "T __pthread_qos_class_and_override_encode", + "type": "CPP" + }, + { + "name": "T __pthread_qos_class_and_override_decode", + "type": "CPP" + }, + { + "name": "T __pthread_sched_pri_encode", + "type": "CPP" + }, + { + "name": "T __pthread_sched_pri_decode", + "type": "CPP" + }, + { + "name": "T _pthread_prefer_alternate_cluster_self", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_asynchronous_override_add", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_asynchronous_override_reset_self", + "type": "CPP" + }, + { + "name": "T __pthread_workqueue_asynchronous_override_reset_all_self", + "type": "CPP" + }, + { + "name": "T _pthread_time_constraint_max_parallelism", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_set_qos_class_np", + "type": "CPP" + }, + { + "name": "T _posix_spawnattr_get_qos_class_np", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_0", + "type": "CPP" + }, + { + "name": "t _OUTLINED_FUNCTION_1", + "type": "CPP" + }, + { + "name": "/usr/lib/system/libsystem_symptoms.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libsystem_trace.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libunwind.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libxpc.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libDiagnosticMessagesClient.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libenergytrace.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libbsm.0.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libz.1.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/system/libkxld.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Security.framework/Versions/A/Security", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libapple_nghttp2.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libcompression.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libsqlite3.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Network.framework/Versions/A/Network", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libCoreEntitlements.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/MessageSecurity.framework/Versions/A/MessageSecurity", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libMobileGestalt.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libcoretls.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libcoretls_cfhelpers.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libpam.2.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libxar.1.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libarchive.2.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libxml2.2.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/liblangid.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Combine.framework/Versions/A/Combine", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CollectionsInternal.framework/Versions/A/CollectionsInternal", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/ReflectionInternal.framework/Versions/A/ReflectionInternal", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/RuntimeInternal.framework/Versions/A/RuntimeInternal", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftCore.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftCoreFoundation.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftDarwin.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftDispatch.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftIOKit.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftObjectiveC.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftXPC.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswift_Concurrency.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswift_StringProcessing.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswiftos.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libpcap.A.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libdns_services.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libnetwork.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/liblzma.5.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/swift/libswift_RegexParser.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libbz2.1.0.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libiconv.2.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libcharset.1.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libheimdal-asn1.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libCheckFix.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libmecab.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libCRFSuite.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libgermantok.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libThaiTokenizer.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/MIL.framework/Versions/A/MIL", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libutil.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/Versions/A/InstalledContentLibrary", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libapp_launch_measurement.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/Versions/A/AppleMobileFileIntegrity", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libmis.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/MobileSystemServices.framework/Versions/A/MobileSystemServices", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/ConfigProfileHelper.framework/Versions/A/ConfigProfileHelper", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libxslt.1.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libcmph.dylib", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon", + "type": "SHARED_LIB" + }, + { + "name": "/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement", + "type": "SHARED_LIB" + }, + { + "name": "/usr/lib/libTLE.dylib", + "type": "SHARED_LIB" + }, + { + "name": "DeoptimizationEntry_Eager", + "timestamp": 3375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DeoptimizationEntry_Lazy", + "timestamp": 3375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RecordWriteSaveFP", + "timestamp": 3375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RecordWriteIgnoreFP", + "timestamp": 3375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "EphemeronKeyBarrierSaveFP", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "EphemeronKeyBarrierIgnoreFP", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AdaptorWithBuiltinExitFrame", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunction_ReceiverIsNullOrUndefined", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunction_ReceiverIsNotNullOrUndefined", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunction_ReceiverIsAny", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallBoundFunction", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallWrappedFunction", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNullOrUndefined", + "timestamp": 3417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNotNullOrUndefined", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsAny", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNullOrUndefined_Baseline_Compact", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNullOrUndefined_Baseline", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNotNullOrUndefined_Baseline_Compact", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNotNullOrUndefined_Baseline", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsAny_Baseline_Compact", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsAny_Baseline", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNullOrUndefined_WithFeedback", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsNotNullOrUndefined_WithFeedback", + "timestamp": 3459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Call_ReceiverIsAny_WithFeedback", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallProxy", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallVarargs", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallWithSpread", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallWithSpread_Baseline", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallWithSpread_WithFeedback", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallWithArrayLike", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallWithArrayLike_WithFeedback", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallForwardVarargs", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunctionForwardVarargs", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunctionTemplate_CheckAccess", + "timestamp": 3500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunctionTemplate_CheckCompatibleReceiver", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallFunctionTemplate_CheckAccessAndCompatibleReceiver", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructFunction", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructBoundFunction", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructedNonConstructable", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Construct", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructVarargs", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructWithSpread", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructWithSpread_Baseline", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructWithSpread_WithFeedback", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructWithArrayLike", + "timestamp": 3542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructWithArrayLike_WithFeedback", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructForwardVarargs", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructFunctionForwardVarargs", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Construct_Baseline", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Construct_WithFeedback", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSConstructStubGeneric", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSBuiltinsConstructStub", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewObject", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewClosure", + "timestamp": 3584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConstructProxy", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSEntry", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSConstructEntry", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSRunMicrotasksEntry", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSEntryTrampoline", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSConstructEntryTrampoline", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ResumeGeneratorTrampoline", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringFromCodePointAt", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringEqual", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringGreaterThan", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringGreaterThanOrEqual", + "timestamp": 3625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringLessThan", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringLessThanOrEqual", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringCompare", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringSubstring", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "OrderedHashTableHealIndex", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterEntryTrampoline", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterEntryTrampolineForProfiling", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterPushArgsThenCall", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterPushUndefinedAndArgsThenCall", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterPushArgsThenCallWithFinalSpread", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterPushArgsThenConstruct", + "timestamp": 3667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterPushArgsThenConstructArrayFunction", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterPushArgsThenConstructWithFinalSpread", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterEnterAtBytecode", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterEnterAtNextBytecode", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterOnStackReplacement", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BaselineOutOfLinePrologue", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BaselineOutOfLinePrologueDeopt", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BaselineOnStackReplacement", + "timestamp": 3709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BaselineLeaveFrame", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BaselineOrInterpreterEnterAtBytecode", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BaselineOrInterpreterEnterAtNextBytecode", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InterpreterOnStackReplacement_ToBaseline", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MaglevOnStackReplacement", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CompileLazy", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CompileLazyDeoptimizedCode", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InstantiateAsmJs", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NotifyDeoptimized", + "timestamp": 3750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ContinueToCodeStubBuiltin", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ContinueToCodeStubBuiltinWithResult", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ContinueToJavaScriptBuiltin", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ContinueToJavaScriptBuiltinWithResult", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallApiCallback", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallApiGetter", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "HandleApiCall", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "HandleApiCallAsFunction", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "HandleApiCallAsConstructor", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AllocateInYoungGeneration", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AllocateRegularInYoungGeneration", + "timestamp": 3792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AllocateInOldGeneration", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AllocateRegularInOldGeneration", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NewHeapNumber", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CopyFastSmiOrObjectElements", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GrowFastDoubleElements", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GrowFastSmiOrObjectElements", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DebugBreakTrampoline", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RestartFrameTrampoline", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToNumber", + "timestamp": 3834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToBigInt", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToNumber_Baseline", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToNumeric_Baseline", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PlainPrimitiveToNumber", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToNumberConvertBigInt", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToBigIntConvertNumber", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Typeof", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntToI64", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntToI32Pair", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "I64ToBigInt", + "timestamp": 3875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "I32PairToBigInt", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToBooleanLazyDeoptContinuation", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathCeilContinuation", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathFloorContinuation", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathRoundContinuation", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadIC_PolymorphicName", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreIC_Megamorphic", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineKeyedOwnIC_Megamorphic", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalIC_NoFeedback", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC_FunctionPrototype", + "timestamp": 3917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC_StringLength", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC_StringWrapperLength", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC_NoFeedback", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreGlobalIC_Slow", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreIC_NoFeedback", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineNamedOwnIC_NoFeedback", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadIC_SloppyArguments", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIndexedInterceptorIC", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreIC_SloppyArguments_Standard", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreIC_SloppyArguments_GrowNoTransitionHandleCOW", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreIC_SloppyArguments_NoTransitionIgnoreOOB", + "timestamp": 3959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreIC_SloppyArguments_NoTransitionHandleCOW", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreFastElementIC_Standard", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreFastElementIC_GrowNoTransitionHandleCOW", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreFastElementIC_NoTransitionIgnoreOOB", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreFastElementIC_NoTransitionHandleCOW", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ElementsTransitionAndStore_Standard", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ElementsTransitionAndStore_GrowNoTransitionHandleCOW", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ElementsTransitionAndStore_NoTransitionIgnoreOOB", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ElementsTransitionAndStore_NoTransitionHandleCOW", + "timestamp": 4000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedHasIC_PolymorphicName", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedHasIC_SloppyArguments", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "HasIndexedInterceptorIC", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "EnqueueMicrotask", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RunMicrotasksTrampoline", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RunMicrotasks", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "HasProperty", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DeleteProperty", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CopyDataProperties", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetDataProperties", + "timestamp": 4042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CopyDataPropertiesWithExcludedPropertiesOnStack", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CopyDataPropertiesWithExcludedProperties", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Abort", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AbortCSADcheck", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "EmptyFunction", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Illegal", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StrictPoisonPillThrower", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "UnsupportedThrower", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReturnReceiver", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayConstructor", + "timestamp": 4084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayConstructorImpl", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_PackedSmi_DontOverride", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_HoleySmi_DontOverride", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_PackedSmi_DisableAllocationSites", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_HoleySmi_DisableAllocationSites", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_Packed_DisableAllocationSites", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_Holey_DisableAllocationSites", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_PackedDouble_DisableAllocationSites", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNoArgumentConstructor_HoleyDouble_DisableAllocationSites", + "timestamp": 4125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_PackedSmi_DontOverride", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_HoleySmi_DontOverride", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_PackedSmi_DisableAllocationSites", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_Packed_DisableAllocationSites", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_Holey_DisableAllocationSites", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_PackedDouble_DisableAllocationSites", + "timestamp": 4167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySingleArgumentConstructor_HoleyDouble_DisableAllocationSites", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayNArgumentsConstructor", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayConcat", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFill", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIncludesSmi", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIncludesSmiOrObject", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIncludesPackedDoubles", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIncludesHoleyDoubles", + "timestamp": 4209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIncludes", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIndexOfSmi", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIndexOfSmiOrObject", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIndexOfPackedDoubles", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIndexOfHoleyDoubles", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIndexOf", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPop", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypePop", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeGroup", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeGroupToMap", + "timestamp": 4250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPush", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypePush", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayShift", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayUnshift", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFromAsync", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CloneFastJSArray", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CloneFastJSArrayFillingHoles", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ExtractFastJSArray", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeEntries", + "timestamp": 4292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeKeys", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeValues", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIteratorPrototypeNext", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FlattenIntoArray", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FlatMapIntoArray", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFlat", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFlatMap", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferConstructor", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferConstructor_DoNotInitialize", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeSlice", + "timestamp": 4334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeResize", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeTransfer", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeTransferToFixedLength", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionEnter", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionReject", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionResolve", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionLazyDeoptContinuation", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionAwaitCaught", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionAwaitUncaught", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionAwaitRejectClosure", + "timestamp": 4375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionAwaitResolveClosure", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntConstructor", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntAsUintN", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntAsIntN", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntPrototypeToLocaleString", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntPrototypeToString", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntPrototypeValueOf", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetColumnNumber", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetEnclosingColumnNumber", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetEnclosingLineNumber", + "timestamp": 4417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetEvalOrigin", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetFileName", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetFunction", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetFunctionName", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetLineNumber", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetMethodName", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetPosition", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetPromiseIndex", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetScriptHash", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetScriptNameOrSourceURL", + "timestamp": 4459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetThis", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeGetTypeName", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeIsAsync", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeIsConstructor", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeIsEval", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeIsNative", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeIsPromiseAll", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeIsToplevel", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallSitePrototypeToString", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleDebug", + "timestamp": 4500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleError", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleInfo", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleLog", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleWarn", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleDir", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleDirXml", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleTable", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleTrace", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleGroup", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleGroupCollapsed", + "timestamp": 4542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleGroupEnd", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleClear", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleCount", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleCountReset", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleAssert", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleProfile", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleProfileEnd", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleTime", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleTimeLog", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleTimeEnd", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleTimeStamp", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConsoleContext", + "timestamp": 4584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewConstructor", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateConstructor", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetDate", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetDay", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetFullYear", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetHours", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetMilliseconds", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetMinutes", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetMonth", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetSeconds", + "timestamp": 4625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetTime", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetTimezoneOffset", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCDate", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCDay", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCFullYear", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCHours", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCMilliseconds", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCMinutes", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCMonth", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetUTCSeconds", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeValueOf", + "timestamp": 4667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToPrimitive", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeGetYear", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetYear", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateNow", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateParse", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetDate", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetFullYear", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetHours", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetMilliseconds", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetMinutes", + "timestamp": 4709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetMonth", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetSeconds", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetTime", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCDate", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCFullYear", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCHours", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCMilliseconds", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCMinutes", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCMonth", + "timestamp": 4750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeSetUTCSeconds", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToDateString", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToISOString", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToUTCString", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToString", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToTimeString", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToJson", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateUTC", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ErrorConstructor", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ErrorCaptureStackTrace", + "timestamp": 4792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ErrorPrototypeToString", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FunctionConstructor", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FunctionPrototypeApply", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FunctionPrototypeBind", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FunctionPrototypeCall", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FunctionPrototypeToString", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateIterResultObject", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateGeneratorObject", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GeneratorFunctionConstructor", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GeneratorPrototypeNext", + "timestamp": 4834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GeneratorPrototypeReturn", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GeneratorPrototypeThrow", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFunctionConstructor", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SuspendGeneratorBaseline", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ResumeGeneratorBaseline", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetIteratorWithFeedbackLazyDeoptContinuation", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallIteratorWithFeedbackLazyDeoptContinuation", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalDecodeURI", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalDecodeURIComponent", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalEncodeURI", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalEncodeURIComponent", + "timestamp": 4875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalEscape", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalUnescape", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalEval", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalIsFinite", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GlobalIsNaN", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JsonParse", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JsonStringify", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JsonRawJson", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JsonIsRawJson", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC_Megamorphic", + "timestamp": 4917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadIC_Noninlined", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadICTrampoline", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadICBaseline", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadICTrampoline_Megamorphic", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadSuperIC", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadSuperICBaseline", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadIC", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadIC_Megamorphic", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadIC_MegamorphicStringKey", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadICTrampoline", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadICBaseline", + "timestamp": 4959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadICTrampoline_Megamorphic", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedLoadICTrampoline_MegamorphicStringKey", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreGlobalIC", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreGlobalICTrampoline", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreGlobalICBaseline", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreIC", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreICTrampoline", + "timestamp": 5000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreICBaseline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineNamedOwnIC", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineNamedOwnICTrampoline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineNamedOwnICBaseline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreIC", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreICTrampoline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedStoreICBaseline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineKeyedOwnIC", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineKeyedOwnICTrampoline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DefineKeyedOwnICBaseline", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreInArrayLiteralIC", + "timestamp": 5042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreInArrayLiteralICBaseline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupContextTrampoline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupContextBaseline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupContextInsideTypeofTrampoline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupContextInsideTypeofBaseline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalIC", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalICInsideTypeof", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalICTrampoline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalICBaseline", + "timestamp": 5084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalICInsideTypeofTrampoline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadGlobalICInsideTypeofBaseline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupGlobalIC", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupGlobalICTrampoline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupGlobalICBaseline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupGlobalICInsideTypeof", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupGlobalICInsideTypeofTrampoline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LookupGlobalICInsideTypeofBaseline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CloneObjectIC", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CloneObjectICBaseline", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CloneObjectIC_Slow", + "timestamp": 5125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedHasIC", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedHasICBaseline", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "KeyedHasIC_Megamorphic", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IterableToList", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IterableToFixedArray", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IterableToListWithSymbolLookup", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IterableToFixedArrayWithSymbolLookupSlow", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IterableToListMayPreserveHoles", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IterableToFixedArrayForWasm", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringListFromIterable", + "timestamp": 5167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FindOrderedHashMapEntry", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapConstructor", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeSet", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeDelete", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeGet", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeHas", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeClear", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeEntries", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeGetSize", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeForEach", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeKeys", + "timestamp": 5209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapPrototypeValues", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapIteratorPrototypeNext", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MapIteratorToList", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberPrototypeToExponential", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberPrototypeToFixed", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberPrototypeToLocaleString", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberPrototypeToPrecision", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SameValue", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SameValueNumbersOnly", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Add_Baseline", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AddSmi_Baseline", + "timestamp": 5250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Subtract_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SubtractSmi_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Multiply_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MultiplySmi_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Divide_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DivideSmi_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Modulus_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ModulusSmi_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Exponentiate_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ExponentiateSmi_Baseline", + "timestamp": 5292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseAnd_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseAndSmi_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseOr_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseOrSmi_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseXor_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseXorSmi_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftLeft_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftLeftSmi_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRight_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRightSmi_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRightLogical_Baseline", + "timestamp": 5334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRightLogicalSmi_Baseline", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Add_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Subtract_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Multiply_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Divide_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Modulus_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Exponentiate_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseAnd_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseOr_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseXor_WithFeedback", + "timestamp": 5375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftLeft_WithFeedback", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRight_WithFeedback", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRightLogical_WithFeedback", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Equal_Baseline", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StrictEqual_Baseline", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LessThan_Baseline", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GreaterThan_Baseline", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LessThanOrEqual_Baseline", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GreaterThanOrEqual_Baseline", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Equal_WithFeedback", + "timestamp": 5417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StrictEqual_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LessThan_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GreaterThan_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LessThanOrEqual_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GreaterThanOrEqual_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseNot_Baseline", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Decrement_Baseline", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Increment_Baseline", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Negate_Baseline", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseNot_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Decrement_WithFeedback", + "timestamp": 5459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Increment_WithFeedback", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Negate_WithFeedback", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectAssign", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectCreate", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectDefineGetter", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectDefineProperties", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectDefineProperty", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectDefineSetter", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectEntries", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectFreeze", + "timestamp": 5500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectGetOwnPropertyDescriptor", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectGetOwnPropertyDescriptors", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectGetOwnPropertyNames", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectGetOwnPropertySymbols", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectHasOwn", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectIs", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectIsFrozen", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectIsSealed", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectKeys", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectLookupGetter", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectLookupSetter", + "timestamp": 5542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeHasOwnProperty", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeIsPrototypeOf", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypePropertyIsEnumerable", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeGetProto", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeSetProto", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectSeal", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectToString", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectValues", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "OrdinaryHasInstance", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InstanceOf", + "timestamp": 5584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InstanceOf_WithFeedback", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "InstanceOf_Baseline", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ForInEnumerate", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ForInPrepare", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ForInFilter", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectApply", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectConstruct", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectDefineProperty", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectOwnKeys", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectSet", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture1Getter", + "timestamp": 5625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture2Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture3Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture4Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture5Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture6Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture7Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture8Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpCapture9Getter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpConstructor", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpInputGetter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpInputSetter", + "timestamp": 5667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpLastMatchGetter", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpLastParenGetter", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpLeftContextGetter", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeCompile", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeToString", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpRightContextGetter", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpExecAtom", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpExecInternal", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpInterpreterTrampoline", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpExperimentalTrampoline", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FindOrderedHashSetEntry", + "timestamp": 5709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetConstructor", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeHas", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeAdd", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeDelete", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeClear", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeEntries", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeGetSize", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeForEach", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetPrototypeValues", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetIteratorPrototypeNext", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetOrSetIteratorToList", + "timestamp": 5750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShadowRealmConstructor", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShadowRealmGetWrappedValue", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShadowRealmPrototypeEvaluate", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShadowRealmPrototypeImportValue", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShadowRealmImportValueFulfilled", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShadowRealmImportValueRejected", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedArrayBufferPrototypeGetByteLength", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedArrayBufferPrototypeSlice", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedArrayBufferPrototypeGrow", + "timestamp": 5792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsLoad", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsStore", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsExchange", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsCompareExchange", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsAdd", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsSub", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsAnd", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsOr", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsXor", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsNotify", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsIsLockFree", + "timestamp": 5834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsWait", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsWaitAsync", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringFromCodePoint", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringFromCharCode", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeLastIndexOf", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeMatchAll", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeLocaleCompare", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeReplace", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSplit", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringRaw", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolConstructor", + "timestamp": 5875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolFor", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolKeyFor", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayBaseConstructor", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayConstructor", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeBuffer", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeByteLength", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeByteOffset", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeLength", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeCopyWithin", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeFill", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeIncludes", + "timestamp": 5917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeIndexOf", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeLastIndexOf", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeReverse", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeToStringTag", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeMap", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GenericJSToWasmWrapper", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmReturnPromiseOnSuspend", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmSuspend", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmResume", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmReject", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmCompileLazy", + "timestamp": 5959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmLiftoffFrameSetup", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmDebugBreak", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmOnStackReplace", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmFloat32ToNumber", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmFloat64ToNumber", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JSToWasmLazyDeoptContinuation", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakMapConstructor", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakMapLookupHashIndex", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakMapGet", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakMapPrototypeHas", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakMapPrototypeSet", + "timestamp": 6000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakMapPrototypeDelete", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakSetConstructor", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakSetPrototypeHas", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakSetPrototypeAdd", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakSetPrototypeDelete", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakCollectionDelete", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakCollectionSet", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedStructTypeConstructor", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedStructConstructor", + "timestamp": 6042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedArrayConstructor", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsMutexConstructor", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsMutexLock", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsMutexTryLock", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsConditionConstructor", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsConditionWait", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AtomicsConditionNotify", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorResolve", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorReject", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorYieldWithAwait", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorReturn", + "timestamp": 6084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorResumeNext", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorFunctionConstructor", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorPrototypeNext", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorPrototypeReturn", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorPrototypeThrow", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorAwaitCaught", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorAwaitUncaught", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorAwaitResolveClosure", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorAwaitRejectClosure", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorYieldWithAwaitResolveClosure", + "timestamp": 6125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorReturnClosedResolveClosure", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorReturnClosedRejectClosure", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncGeneratorReturnResolveClosure", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFromSyncIteratorPrototypeNext", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFromSyncIteratorPrototypeThrow", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncFromSyncIteratorPrototypeReturn", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncIteratorValueUnwrap", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CEntry_Return1_ArgvInRegister_NoBuiltinExit", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CEntry_Return1_ArgvOnStack_BuiltinExit", + "timestamp": 6167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CEntry_Return1_ArgvOnStack_NoBuiltinExit", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CEntry_Return2_ArgvInRegister_NoBuiltinExit", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CEntry_Return2_ArgvOnStack_BuiltinExit", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CEntry_Return2_ArgvOnStack_NoBuiltinExit", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DirectCEntry", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringAdd_CheckNone", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SubString", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DoubleToI", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetProperty", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetPropertyWithReceiver", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SetProperty", + "timestamp": 6209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateDataProperty", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetOwnPropertyDescriptor", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MemCopyUint8Uint8", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MemMove", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FindNonDefaultConstructorOrConstruct", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "OrdinaryGetOwnPropertyDescriptor", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IsTraceCategoryEnabled", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Trace", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FinalizationRegistryUnregister", + "timestamp": 6250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AsyncModuleEvaluate", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallAsyncModuleFulfilled", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallAsyncModuleRejected", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowTimeZone", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowInstant", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowPlainDateTime", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowPlainDateTimeISO", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowZonedDateTime", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowZonedDateTimeISO", + "timestamp": 6292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowPlainDate", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowPlainDateISO", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalNowPlainTimeISO", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateConstructor", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateFrom", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateCompare", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeCalendar", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeYear", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeMonth", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeMonthCode", + "timestamp": 6334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeDay", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeDayOfWeek", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeDayOfYear", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeWeekOfYear", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeDaysInWeek", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeDaysInMonth", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeDaysInYear", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeMonthsInYear", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeInLeapYear", + "timestamp": 6375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToPlainYearMonth", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToPlainMonthDay", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeGetISOFields", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeAdd", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeSubtract", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeWith", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeWithCalendar", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeUntil", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeSince", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeEquals", + "timestamp": 6417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToPlainDateTime", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToZonedDateTime", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToString", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToJSON", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeToLocaleString", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeValueOf", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimeConstructor", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimeFrom", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimeCompare", + "timestamp": 6459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeCalendar", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeHour", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeMinute", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeSecond", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeMillisecond", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeMicrosecond", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeNanosecond", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeAdd", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeSubtract", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeWith", + "timestamp": 6500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeUntil", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeSince", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeRound", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeEquals", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeToPlainDateTime", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeToZonedDateTime", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeGetISOFields", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeToString", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeToJSON", + "timestamp": 6542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeToLocaleString", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainTimePrototypeValueOf", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimeConstructor", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimeFrom", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimeCompare", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeCalendar", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeYear", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeMonth", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeMonthCode", + "timestamp": 6584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeDay", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeHour", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeMinute", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeSecond", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeMillisecond", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeMicrosecond", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeNanosecond", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeDayOfWeek", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeDayOfYear", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeWeekOfYear", + "timestamp": 6625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeDaysInWeek", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeDaysInMonth", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeDaysInYear", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeMonthsInYear", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeInLeapYear", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeWith", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeWithPlainTime", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeWithPlainDate", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeWithCalendar", + "timestamp": 6667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeAdd", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeSubtract", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeUntil", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeSince", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeRound", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeEquals", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToString", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToJSON", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToLocaleString", + "timestamp": 6709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeValueOf", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToZonedDateTime", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToPlainDate", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToPlainYearMonth", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToPlainMonthDay", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeToPlainTime", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeGetISOFields", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimeConstructor", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimeFrom", + "timestamp": 6750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimeCompare", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeCalendar", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeTimeZone", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeYear", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeMonth", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeMonthCode", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeDay", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeHour", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeMinute", + "timestamp": 6792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeSecond", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeMillisecond", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeMicrosecond", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeNanosecond", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEpochSeconds", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEpochMilliseconds", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEpochMicroseconds", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEpochNanoseconds", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeDayOfWeek", + "timestamp": 6834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeDayOfYear", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeWeekOfYear", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeHoursInDay", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeDaysInWeek", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeDaysInMonth", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeDaysInYear", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeMonthsInYear", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeInLeapYear", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeOffsetNanoseconds", + "timestamp": 6875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeOffset", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeWith", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeWithPlainTime", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeWithPlainDate", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeWithTimeZone", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeWithCalendar", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeAdd", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeSubtract", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeUntil", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeSince", + "timestamp": 6917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeRound", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEquals", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToString", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToJSON", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToLocaleString", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeValueOf", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeStartOfDay", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToInstant", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToPlainDate", + "timestamp": 6959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToPlainTime", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToPlainDateTime", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToPlainYearMonth", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeToPlainMonthDay", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeGetISOFields", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationConstructor", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationFrom", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationCompare", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeYears", + "timestamp": 7000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeMonths", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeWeeks", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeDays", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeHours", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeMinutes", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeSeconds", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeMilliseconds", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeMicroseconds", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeNanoseconds", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeSign", + "timestamp": 7042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeBlank", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeWith", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeNegated", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeAbs", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeAdd", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeSubtract", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeRound", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeTotal", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeToString", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeToJSON", + "timestamp": 7084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeToLocaleString", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalDurationPrototypeValueOf", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantConstructor", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantFrom", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantFromEpochSeconds", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantFromEpochMilliseconds", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantFromEpochMicroseconds", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantFromEpochNanoseconds", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantCompare", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeEpochSeconds", + "timestamp": 7125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeEpochMilliseconds", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeEpochMicroseconds", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeEpochNanoseconds", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeAdd", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeSubtract", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeUntil", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeSince", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeRound", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeEquals", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeToString", + "timestamp": 7167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeToJSON", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeToLocaleString", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeValueOf", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeToZonedDateTime", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantPrototypeToZonedDateTimeISO", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthConstructor", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthFrom", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthCompare", + "timestamp": 7209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeCalendar", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeYear", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeMonth", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeMonthCode", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeDaysInYear", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeDaysInMonth", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeMonthsInYear", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeInLeapYear", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeWith", + "timestamp": 7250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeAdd", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeSubtract", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeUntil", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeSince", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeEquals", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeToString", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeToJSON", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeToLocaleString", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeValueOf", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeToPlainDate", + "timestamp": 7292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeGetISOFields", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayConstructor", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayFrom", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeCalendar", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeMonthCode", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeDay", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeWith", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeEquals", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeToString", + "timestamp": 7334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeToJSON", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeToLocaleString", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeValueOf", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeToPlainDate", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainMonthDayPrototypeGetISOFields", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZoneConstructor", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZoneFrom", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeId", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetOffsetNanosecondsFor", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetOffsetStringFor", + "timestamp": 7375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetPlainDateTimeFor", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetInstantFor", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetPossibleInstantsFor", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetNextTransition", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeGetPreviousTransition", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeToString", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalTimeZonePrototypeToJSON", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarConstructor", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarFrom", + "timestamp": 7417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeId", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDateFromFields", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeYearMonthFromFields", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeMonthDayFromFields", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDateAdd", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDateUntil", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeYear", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeMonth", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeMonthCode", + "timestamp": 7459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDay", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDayOfWeek", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDayOfYear", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeWeekOfYear", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDaysInWeek", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDaysInMonth", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeDaysInYear", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeMonthsInYear", + "timestamp": 7500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeInLeapYear", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeFields", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeMergeFields", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeToString", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeToJSON", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToTemporalInstant", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringFixedArrayFromIterable", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalInstantFixedArrayFromIterable", + "timestamp": 7542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "AggregateErrorConstructor", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeAt", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeConcat", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeCopyWithin", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayEveryLoopEagerDeoptContinuation", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayEveryLoopLazyDeoptContinuation", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayEveryLoopContinuation", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayEvery", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFilterLoopEagerDeoptContinuation", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFilterLoopLazyDeoptContinuation", + "timestamp": 7584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFilterLoopContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFilter", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindLoopEagerDeoptContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindLoopLazyDeoptContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindLoopAfterCallbackLazyDeoptContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindLoopContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFind", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindIndexLoopEagerDeoptContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindIndexLoopLazyDeoptContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindIndexLoopAfterCallbackLazyDeoptContinuation", + "timestamp": 7625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindIndexLoopContinuation", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFindIndex", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindLastLoopContinuation", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFindLast", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFindLastIndexLoopContinuation", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeFindLastIndex", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayForEachLoopEagerDeoptContinuation", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayForEachLoopLazyDeoptContinuation", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayForEachLoopContinuation", + "timestamp": 7667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayForEach", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayFrom", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayIsArray", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinElement_DictionaryElements_0", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinElement_FastSmiOrObjectElements_0", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinElement_FastDoubleElements_0", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ConvertToLocaleString", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JoinStackPush", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "JoinStackPop", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeJoin", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeToLocaleString", + "timestamp": 7709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeToString", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeJoin", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeToLocaleString", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeLastIndexOf", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayMapPreLoopLazyDeoptContinuation", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayMapLoopEagerDeoptContinuation", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayMapLoopLazyDeoptContinuation", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayMapLoopContinuation", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayMap", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayOf", + "timestamp": 7750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceRightPreLoopEagerDeoptContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceRightLoopEagerDeoptContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceRightLoopLazyDeoptContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceRightLoopContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceRight", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReducePreLoopEagerDeoptContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceLoopEagerDeoptContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceLoopLazyDeoptContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduceLoopContinuation", + "timestamp": 7792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayReduce", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeReverse", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeShift", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeSlice", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySomeLoopEagerDeoptContinuation", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySomeLoopLazyDeoptContinuation", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySomeLoopContinuation", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArraySome", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeSplice", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GenericArrayToReversed", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeToReversed", + "timestamp": 7834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayTimSortIntoCopy", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeToSorted", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeToSpliced", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeUnshift", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GenericArrayWith", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeWith", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeGetByteLength", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeGetMaxByteLength", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeGetResizable", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferPrototypeGetDetached", + "timestamp": 7875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedArrayBufferPrototypeGetMaxByteLength", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SharedArrayBufferPrototypeGetGrowable", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayBufferIsView", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToInteger", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastCreateDataProperty", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CheckSameObject", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BooleanConstructor", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BooleanPrototypeToString", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BooleanPrototypeValueOf", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntAddNoThrow", + "timestamp": 7917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntAdd", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntSubtractNoThrow", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntSubtract", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntMultiplyNoThrow", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntMultiply", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntDivideNoThrow", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntDivide", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntModulusNoThrow", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntModulus", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntBitwiseAndNoThrow", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntBitwiseAnd", + "timestamp": 7959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntBitwiseOrNoThrow", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntBitwiseOr", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntBitwiseXorNoThrow", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntBitwiseXor", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntShiftLeftNoThrow", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntShiftLeft", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntShiftRightNoThrow", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntShiftRight", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntEqual", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntLessThan", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntGreaterThan", + "timestamp": 8000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntLessThanOrEqual", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntGreaterThanOrEqual", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BigIntUnaryMinus", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToString", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeToString", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeValueOf", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringToList", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeCharAt", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeCharCodeAt", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeCodePointAt", + "timestamp": 8042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeConcat", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringConstructor", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringAddConvertLeft", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringAddConvertRight", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringCharAt", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewClosureBaseline", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewFunctionContextEval", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewFunctionContextFunction", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateRegExpLiteral", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateShallowArrayLiteral", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateEmptyArrayLiteral", + "timestamp": 8084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateShallowObjectLiteral", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectConstructor", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateEmptyLiteralObject", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberConstructor", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GenericLazyDeoptContinuation", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringToNumber", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NonNumberToNumber", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NonNumberToNumeric", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToNumeric", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberToString", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToBoolean", + "timestamp": 8125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToBooleanForBaselineJump", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToLength", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToName", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ToObject", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NonPrimitiveToPrimitive_Default", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NonPrimitiveToPrimitive_Number", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NonPrimitiveToPrimitive_String", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "OrdinaryToPrimitive_Number", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "OrdinaryToPrimitive_Number_Inline", + "timestamp": 8167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "OrdinaryToPrimitive_String", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastConsoleAssert", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetBuffer", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetByteLength", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetByteOffset", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetUint8", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetInt8", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetUint16", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetInt16", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetUint32", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetInt32", + "timestamp": 8209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetFloat32", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetFloat64", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetBigUint64", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeGetBigInt64", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetUint8", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetInt8", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetUint16", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetInt16", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetUint32", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetInt32", + "timestamp": 8250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetFloat32", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetFloat64", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetBigUint64", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DataViewPrototypeSetBigInt64", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FinalizationRegistryConstructor", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FinalizationRegistryRegister", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FinalizationRegistryPrototypeCleanupSome", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FunctionPrototypeHasInstance", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastFunctionPrototypeBind", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IncBlockCounter", + "timestamp": 8292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetTemplateObject", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ForInNext", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetImportMetaObjectBaseline", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetIteratorWithFeedback", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GetIteratorBaseline", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateAsyncFromSyncIteratorBaseline", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallIteratorWithFeedback", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorConstructor", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorFrom", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WrapForValidIteratorPrototypeNext", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WrapForValidIteratorPrototypeReturn", + "timestamp": 8334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorHelperPrototypeNext", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorHelperPrototypeReturn", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorPrototypeMap", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorMapHelperNext", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorPrototypeFilter", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorFilterHelperNext", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorPrototypeTake", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorTakeHelperNext", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorPrototypeDrop", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IteratorDropHelperNext", + "timestamp": 8375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAbs", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathCeil", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathFloor", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathRound", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathTrunc", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathPow", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathMax", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathMin", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAcos", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAcosh", + "timestamp": 8417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAsin", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAsinh", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAtan", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAtan2", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathAtanh", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathCbrt", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathClz32", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathCos", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathCosh", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathExp", + "timestamp": 8459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathExpm1", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathFround", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathImul", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathLog", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathLog1p", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathLog10", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathLog2", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathSin", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathSign", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathSinh", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathSqrt", + "timestamp": 8500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathTan", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathTanh", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathHypot", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MathRandom", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberPrototypeToString", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberIsFinite", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberIsInteger", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberIsNaN", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberIsSafeInteger", + "timestamp": 8542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberPrototypeValueOf", + "timestamp": 8584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberParseFloat", + "timestamp": 8584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ParseInt", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberParseInt", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Add", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Subtract", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Multiply", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Divide", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Modulus", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Exponentiate", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Negate", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseNot", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Decrement", + "timestamp": 8625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Increment", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftLeft", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRight", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ShiftRightLogical", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseAnd", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseOr", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "BitwiseXor", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LessThan", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LessThanOrEqual", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GreaterThan", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GreaterThanOrEqual", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Equal", + "timestamp": 8667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StrictEqual", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectFromEntries", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateObjectWithoutProperties", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectIsExtensible", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPreventExtensions", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectGetPrototypeOf", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectSetPrototypeOf", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeToString", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeValueOf", + "timestamp": 8709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ObjectPrototypeToLocaleString", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FulfillPromise", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RejectPromise", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NewPromiseCapability", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseCapabilityDefaultReject", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseCapabilityDefaultResolve", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PerformPromiseThen", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseReject", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseGetCapabilitiesExecutor", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseConstructorLazyDeoptContinuation", + "timestamp": 8750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAll", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAllSettled", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAllResolveElementClosure", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAllSettledResolveElementClosure", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAllSettledRejectElementClosure", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAnyRejectElementClosure", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseAny", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseConstructor", + "timestamp": 8792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromisePrototypeCatch", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseValueThunkFinally", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseThrowerFinally", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseCatchFinally", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseThenFinally", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromisePrototypeFinally", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseRace", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseFulfillReactionJob", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseRejectReactionJob", + "timestamp": 8834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseResolveTrampoline", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseResolve", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ResolvePromise", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromisePrototypeThen", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PromiseResolveThenableJob", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyConstructor", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyDeleteProperty", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyGetProperty", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyGetPrototypeOf", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyHasProperty", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyIsExtensible", + "timestamp": 8875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyPreventExtensions", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyRevocable", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxyRevoke", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxySetProperty", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ProxySetPrototypeOf", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectIsExtensible", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectPreventExtensions", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectGetPrototypeOf", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectSetPrototypeOf", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectGet", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectDeleteProperty", + "timestamp": 8917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectHas", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReflectGetOwnPropertyDescriptor", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeExecSlow", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeExec", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeMatchAll", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpStringIteratorPrototypeNext", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpMatchFast", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeMatch", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpReplace", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeReplace", + "timestamp": 8959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpSearchFast", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeSearch", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeSourceGetter", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpSplit", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeSplit", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeTest", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeTestFast", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeGlobalGetter", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeIgnoreCaseGetter", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeMultilineGetter", + "timestamp": 9000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeHasIndicesGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeLinearGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeDotAllGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeStickyGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeUnicodeGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeUnicodeSetsGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RegExpPrototypeFlagsGetter", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeAt", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeEndsWith", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateHTML", + "timestamp": 9042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeAnchor", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeBig", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeBlink", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeBold", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeFontcolor", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeFontsize", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeFixed", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeItalics", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeLink", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSmall", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeStrike", + "timestamp": 9084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSub", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSup", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeIncludes", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeIndexOf", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeIsWellFormed", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeIterator", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringIteratorPrototypeNext", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeMatch", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSearch", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypePadStart", + "timestamp": 9125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypePadEnd", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringRepeat", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeRepeat", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeReplaceAll", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSlice", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeStartsWith", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSubstr", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeSubstring", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeToWellFormed", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeTrim", + "timestamp": 9167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeTrimStart", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeTrimEnd", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolPrototypeDescriptionGetter", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolPrototypeToPrimitive", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolPrototypeToString", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SymbolPrototypeValueOf", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeAt", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CreateTypedArray", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeEvery", + "timestamp": 9209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeEntries", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeFilter", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeFind", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeFindIndex", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeFindLast", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeFindLastIndex", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeForEach", + "timestamp": 9250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayFrom", + "timestamp": 9292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeKeys", + "timestamp": 9292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayOf", + "timestamp": 9292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeReduce", + "timestamp": 9292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeReduceRight", + "timestamp": 9292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeSet", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeSlice", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeSome", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayMergeSort", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeSort", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeSubArray", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeToReversed", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeToSorted", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeValues", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TypedArrayPrototypeWith", + "timestamp": 9334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakRefConstructor", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WeakRefDeref", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NewSloppyArgumentsElements", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NewStrictArgumentsElements", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NewRestArgumentsElements", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewSloppyArguments", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewStrictArguments", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "FastNewRestArguments", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringSlowFlatten", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringIndexOf", + "timestamp": 9375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TestTurbofanType", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CheckTurbofanType", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CheckTurboshaftWord32Type", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CheckTurboshaftWord64Type", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CheckTurboshaftFloat32Type", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CheckTurboshaftFloat64Type", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GenericBuiltinTest_JSAny_0", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TestHelperPlus1", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TestHelperPlus2", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NewSmiBox", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ReturnTwoValues", + "timestamp": 9417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Load_FastSmiElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Load_FastObjectElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Load_FastDoubleElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Store_FastSmiElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Store_FastObjectElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Store_FastDoubleElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Delete_FastSmiElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Delete_FastObjectElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Delete_FastDoubleElements_0", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SortCompareDefault", + "timestamp": 9459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SortCompareUserFn", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CanUseSameAccessor_GenericElementsAccessor_0", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Copy", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "MergeAt", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GallopLeft", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GallopRight", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayTimSort", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ArrayPrototypeSort", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringFastLocaleCompare", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmInt32ToHeapNumber", + "timestamp": 9500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmFuncRefToJS", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTaggedNonSmiToInt32", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTaggedToFloat64", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmMemoryGrow", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableInit", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableCopy", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableFill", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableGrow", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableGet", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableSet", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableGetFuncRef", + "timestamp": 9542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTableSetFuncRef", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmRefFunc", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmAllocateFixedArray", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmThrow", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmRethrow", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmRethrowExplicitContext", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTriggerTierUp", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStackGuard", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStackOverflow", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTraceMemory", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTraceEnter", + "timestamp": 9584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTraceExit", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmAllocateJSArray", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmAllocateStructWithRtt", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmAllocateArray_Uninitialized", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmArrayNewSegment", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmArrayCopyWithChecks", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmArrayCopy", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmAllocateObjectWrapper", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmSubtypeCheck", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmInt32ToNumber", + "timestamp": 9625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmUint32ToNumber", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "UintPtr53ToNumber", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmAtomicNotify", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmI32AtomicWait", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmI64AtomicWait", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CallRefIC", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmGetOwnProperty", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmTrap", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapUnreachable", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapMemOutOfBounds", + "timestamp": 9667, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapUnalignedAccess", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapDivByZero", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapDivUnrepresentable", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapRemByZero", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapFloatUnrepresentable", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapFuncSigMismatch", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapDataSegmentOutOfBounds", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapElementSegmentOutOfBounds", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapTableOutOfBounds", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapRethrowNull", + "timestamp": 9709, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapNullDereference", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapIllegalCast", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapArrayOutOfBounds", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapArrayTooLarge", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowWasmTrapStringOffsetOutOfBounds", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ExperimentalWasmConvertArrayToString", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ExperimentalWasmConvertStringToArray", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringNewWtf8", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringNewWtf8Array", + "timestamp": 9750, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringNewWtf16", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringNewWtf16Array", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringAsWtf16", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringConst", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringMeasureUtf8", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringMeasureWtf8", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringEncodeWtf8", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringEncodeWtf8Array", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringEncodeWtf16", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringEncodeWtf16Array", + "timestamp": 9792, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ThrowToLowerCaseCalledOnNull", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringConcat", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringEqual", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringIsUSVSequence", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringAsWtf8", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewWtf8Advance", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewWtf8Encode", + "timestamp": 9834, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewWtf8Slice", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewWtf16GetCodeUnit", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewWtf16Encode", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewWtf16Slice", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringAsIter", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewIterNext", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewIterAdvance", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewIterRewind", + "timestamp": 9875, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringViewIterSlice", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringFromCodePoint", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmStringHash", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "WasmExternInternalize", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinElement_GenericElementsAccessor_0", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Int32Elements_0", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Float32Elements_0", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Float64Elements_0", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Uint8ClampedElements_0", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_BigUint64Elements_0", + "timestamp": 9917, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_BigInt64Elements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Uint8Elements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Int8Elements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Uint16Elements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Int16Elements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadJoinTypedElement_Uint32Elements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "GenericBuiltinTest_Smi_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CanUseSameAccessor_FastDoubleElements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CanUseSameAccessor_FastSmiElements_0", + "timestamp": 9959, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CanUseSameAccessor_FastObjectElements_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadNoHasPropertyCheck_GenericElementsAccessor_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Load_GenericElementsAccessor_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Store_GenericElementsAccessor_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Delete_GenericElementsAccessor_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Int32Elements_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Int32Elements_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Int32Elements_0", + "timestamp": 10000, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Float32Elements_0", + "timestamp": 10042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Float32Elements_0", + "timestamp": 10042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Float32Elements_0", + "timestamp": 10042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Float64Elements_0", + "timestamp": 10042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Float64Elements_0", + "timestamp": 10042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Float64Elements_0", + "timestamp": 10042, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Uint8ClampedElements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Uint8ClampedElements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Uint8ClampedElements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_BigUint64Elements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_BigUint64Elements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_BigUint64Elements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_BigInt64Elements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_BigInt64Elements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_BigInt64Elements_0", + "timestamp": 10084, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Uint8Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Uint8Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Uint8Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Int8Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Int8Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Int8Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Uint16Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Uint16Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Uint16Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Int16Elements_0", + "timestamp": 10125, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Int16Elements_0", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Int16Elements_0", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LoadTypedElement_Uint32Elements_0", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementNumeric_Uint32Elements_0", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StoreTypedElementJSAny_Uint32Elements_0", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CollatorConstructor", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CollatorInternalCompare", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CollatorPrototypeCompare", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CollatorSupportedLocalesOf", + "timestamp": 10167, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "CollatorPrototypeResolvedOptions", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToLocaleDateString", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToLocaleString", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DatePrototypeToLocaleTimeString", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatConstructor", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatInternalFormat", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatPrototypeFormat", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatPrototypeFormatRange", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatPrototypeFormatRangeToParts", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatPrototypeFormatToParts", + "timestamp": 10209, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatPrototypeResolvedOptions", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DateTimeFormatSupportedLocalesOf", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DisplayNamesConstructor", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DisplayNamesPrototypeOf", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DisplayNamesPrototypeResolvedOptions", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DisplayNamesSupportedLocalesOf", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DurationFormatConstructor", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DurationFormatPrototypeFormat", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DurationFormatPrototypeFormatToParts", + "timestamp": 10250, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DurationFormatPrototypeResolvedOptions", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "DurationFormatSupportedLocalesOf", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IntlGetCanonicalLocales", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "IntlSupportedValuesOf", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ListFormatConstructor", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ListFormatPrototypeFormat", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ListFormatPrototypeFormatToParts", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ListFormatPrototypeResolvedOptions", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "ListFormatSupportedLocalesOf", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocaleConstructor", + "timestamp": 10292, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeBaseName", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeCalendar", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeCalendars", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeCaseFirst", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeCollation", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeCollations", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeHourCycle", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeHourCycles", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeLanguage", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeMaximize", + "timestamp": 10334, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeMinimize", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeNumeric", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeNumberingSystem", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeNumberingSystems", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeRegion", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeScript", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeTextInfo", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeTimeZones", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeToString", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "LocalePrototypeWeekInfo", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatConstructor", + "timestamp": 10375, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatInternalFormatNumber", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatPrototypeFormatNumber", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatPrototypeFormatRange", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatPrototypeFormatRangeToParts", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatPrototypeFormatToParts", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatPrototypeResolvedOptions", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "NumberFormatSupportedLocalesOf", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PluralRulesConstructor", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PluralRulesPrototypeResolvedOptions", + "timestamp": 10417, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PluralRulesPrototypeSelect", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PluralRulesPrototypeSelectRange", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "PluralRulesSupportedLocalesOf", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RelativeTimeFormatConstructor", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RelativeTimeFormatPrototypeFormat", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RelativeTimeFormatPrototypeFormatToParts", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RelativeTimeFormatPrototypeResolvedOptions", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "RelativeTimeFormatSupportedLocalesOf", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmenterConstructor", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmenterPrototypeResolvedOptions", + "timestamp": 10459, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmenterPrototypeSegment", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmenterSupportedLocalesOf", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmentIteratorPrototypeNext", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmentsPrototypeContaining", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "SegmentsPrototypeIterator", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeNormalizeIntl", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeToLocaleLowerCase", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeToLocaleUpperCase", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeToLowerCaseIntl", + "timestamp": 10500, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringPrototypeToUpperCaseIntl", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "StringToLowerCaseIntl", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeEra", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalCalendarPrototypeEraYear", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeEra", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDatePrototypeEraYear", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeEra", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainDateTimePrototypeEraYear", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeEra", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalPlainYearMonthPrototypeEraYear", + "timestamp": 10542, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEra", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "TemporalZonedDateTimePrototypeEraYear", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorConstructor", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorInternalAdoptText", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorInternalBreakType", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorInternalCurrent", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorInternalFirst", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorInternalNext", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorPrototypeAdoptText", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorPrototypeBreakType", + "timestamp": 10584, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorPrototypeCurrent", + "timestamp": 10625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorPrototypeFirst", + "timestamp": 10625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorPrototypeNext", + "timestamp": 10625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorPrototypeResolvedOptions", + "timestamp": 10625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "V8BreakIteratorSupportedLocalesOf", + "timestamp": 10625, + "type": "CODE", + "kind": "Builtin" + }, + { + "name": "Wide", + "timestamp": 10625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ExtraWide", + "timestamp": 10625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreakWide", + "timestamp": 10625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreakExtraWide", + "timestamp": 10625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak0", + "timestamp": 10625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak1", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak2", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak3", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak4", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak5", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak6", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Ldar", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaZero", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaSmi", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaUndefined", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaNull", + "timestamp": 10667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaTheHole", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaTrue", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaFalse", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaConstant", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaContextSlot", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaImmutableContextSlot", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaCurrentContextSlot", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaImmutableCurrentContextSlot", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Star", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mov", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "PushContext", + "timestamp": 10709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "PopContext", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestReferenceEqual", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestUndetectable", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestNull", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestUndefined", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestTypeOf", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaGlobal", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaGlobalInsideTypeof", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaGlobal", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaContextSlot", + "timestamp": 10750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaCurrentContextSlot", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupSlot", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupContextSlot", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupGlobalSlot", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupSlotInsideTypeof", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupContextSlotInsideTypeof", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupGlobalSlotInsideTypeof", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaLookupSlot", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetNamedProperty", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetNamedPropertyFromSuper", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetKeyedProperty", + "timestamp": 10792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaModuleVariable", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaModuleVariable", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetNamedProperty", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineNamedOwnProperty", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetKeyedProperty", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineKeyedOwnProperty", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaInArrayLiteral", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineKeyedOwnPropertyInLiteral", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Add", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Sub", + "timestamp": 10834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mul", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Div", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mod", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Exp", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseOr", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseXor", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseAnd", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftLeft", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRight", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightLogical", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "AddSmi", + "timestamp": 10875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SubSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "MulSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DivSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ModSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ExpSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseOrSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseXorSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseAndSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftLeftSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightLogicalSmi", + "timestamp": 10917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Inc", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Dec", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Negate", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseNot", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToBooleanLogicalNot", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LogicalNot", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TypeOf", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DeletePropertyStrict", + "timestamp": 10959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DeletePropertySloppy", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetSuperConstructor", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "FindNonDefaultConstructorOrConstruct", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallAnyReceiver", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty0", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty1", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty2", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver0", + "timestamp": 11000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver1", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver2", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallWithSpread", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallRuntime", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallRuntimeForPair", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallJSRuntime", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "InvokeIntrinsic", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Construct", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ConstructWithSpread", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestEqual", + "timestamp": 11042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestEqualStrict", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestLessThan", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestGreaterThan", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestLessThanOrEqual", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestGreaterThanOrEqual", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestInstanceOf", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestIn", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToName", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToNumber", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToNumeric", + "timestamp": 11084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToObject", + "timestamp": 11125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToString", + "timestamp": 11125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateRegExpLiteral", + "timestamp": 11125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateArrayLiteral", + "timestamp": 11125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateArrayFromIterable", + "timestamp": 11125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEmptyArrayLiteral", + "timestamp": 11167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateObjectLiteral", + "timestamp": 11167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEmptyObjectLiteral", + "timestamp": 11167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CloneObject", + "timestamp": 11167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetTemplateObject", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateClosure", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateBlockContext", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateCatchContext", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateFunctionContext", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEvalContext", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateWithContext", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateMappedArguments", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateUnmappedArguments", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateRestParameter", + "timestamp": 11209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpLoop", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Jump", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpConstant", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNullConstant", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotNullConstant", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedConstant", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotUndefinedConstant", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedOrNullConstant", + "timestamp": 11250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfTrueConstant", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfFalseConstant", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfJSReceiverConstant", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanTrueConstant", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanFalseConstant", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanTrue", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanFalse", + "timestamp": 11292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfTrue", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfFalse", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNull", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotNull", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefined", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotUndefined", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedOrNull", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfJSReceiver", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SwitchOnSmiNoFeedback", + "timestamp": 11334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInEnumerate", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInPrepare", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInContinue", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInNext", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInStep", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetPendingMessage", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Throw", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ReThrow", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Return", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowReferenceErrorIfHole", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowSuperNotCalledIfHole", + "timestamp": 11375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowSuperAlreadyCalledIfNotHole", + "timestamp": 11417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowIfNotSuperConstructor", + "timestamp": 11417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SwitchOnGeneratorState", + "timestamp": 11417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SuspendGenerator", + "timestamp": 11417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ResumeGenerator", + "timestamp": 11459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetIterator", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Debugger", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "IncBlockCounter", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Abort", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Star0", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Illegal", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak1.Wide", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak2.Wide", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak3.Wide", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak4.Wide", + "timestamp": 11500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak5.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak6.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Ldar.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaSmi.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaConstant.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaContextSlot.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaImmutableContextSlot.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaCurrentContextSlot.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaImmutableCurrentContextSlot.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Star.Wide", + "timestamp": 11542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mov.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "PushContext.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "PopContext.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestReferenceEqual.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaGlobal.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaGlobalInsideTypeof.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaGlobal.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaContextSlot.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaCurrentContextSlot.Wide", + "timestamp": 11584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupSlot.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupContextSlot.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupGlobalSlot.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupSlotInsideTypeof.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupContextSlotInsideTypeof.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupGlobalSlotInsideTypeof.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaLookupSlot.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetNamedProperty.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetNamedPropertyFromSuper.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetKeyedProperty.Wide", + "timestamp": 11625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaModuleVariable.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaModuleVariable.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetNamedProperty.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineNamedOwnProperty.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetKeyedProperty.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineKeyedOwnProperty.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaInArrayLiteral.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineKeyedOwnPropertyInLiteral.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Add.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Sub.Wide", + "timestamp": 11667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mul.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Div.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mod.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Exp.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseOr.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseXor.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseAnd.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftLeft.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRight.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightLogical.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "AddSmi.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SubSmi.Wide", + "timestamp": 11709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "MulSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DivSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ModSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ExpSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseOrSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseXorSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseAndSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftLeftSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightLogicalSmi.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Inc.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Dec.Wide", + "timestamp": 11750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Negate.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseNot.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DeletePropertyStrict.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DeletePropertySloppy.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetSuperConstructor.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "FindNonDefaultConstructorOrConstruct.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallAnyReceiver.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty0.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty1.Wide", + "timestamp": 11792, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty2.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver0.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver1.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver2.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallWithSpread.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallRuntime.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallRuntimeForPair.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallJSRuntime.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "InvokeIntrinsic.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Construct.Wide", + "timestamp": 11834, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ConstructWithSpread.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestEqual.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestEqualStrict.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestLessThan.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestGreaterThan.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestLessThanOrEqual.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestGreaterThanOrEqual.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestInstanceOf.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestIn.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToName.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToNumber.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToNumeric.Wide", + "timestamp": 11875, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToObject.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateRegExpLiteral.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateArrayLiteral.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEmptyArrayLiteral.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateObjectLiteral.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CloneObject.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetTemplateObject.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateClosure.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateBlockContext.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateCatchContext.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateFunctionContext.Wide", + "timestamp": 11917, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEvalContext.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateWithContext.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpLoop.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Jump.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpConstant.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNullConstant.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotNullConstant.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedConstant.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotUndefinedConstant.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedOrNullConstant.Wide", + "timestamp": 11959, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfTrueConstant.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfFalseConstant.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfJSReceiverConstant.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanTrueConstant.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanFalseConstant.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanTrue.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanFalse.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfTrue.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfFalse.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNull.Wide", + "timestamp": 12000, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotNull.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefined.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotUndefined.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedOrNull.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfJSReceiver.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SwitchOnSmiNoFeedback.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInEnumerate.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInPrepare.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInContinue.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInNext.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInStep.Wide", + "timestamp": 12042, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowReferenceErrorIfHole.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowIfNotSuperConstructor.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SwitchOnGeneratorState.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SuspendGenerator.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ResumeGenerator.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetIterator.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "IncBlockCounter.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Abort.Wide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak1.ExtraWide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak2.ExtraWide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak3.ExtraWide", + "timestamp": 12084, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak4.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak5.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DebugBreak6.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Ldar.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaSmi.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaConstant.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaContextSlot.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaImmutableContextSlot.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaCurrentContextSlot.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaImmutableCurrentContextSlot.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Star.ExtraWide", + "timestamp": 12125, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mov.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "PushContext.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "PopContext.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestReferenceEqual.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaGlobal.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaGlobalInsideTypeof.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaGlobal.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaContextSlot.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaCurrentContextSlot.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupSlot.ExtraWide", + "timestamp": 12167, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupContextSlot.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupGlobalSlot.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupSlotInsideTypeof.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupContextSlotInsideTypeof.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaLookupGlobalSlotInsideTypeof.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaLookupSlot.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetNamedProperty.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetNamedPropertyFromSuper.ExtraWide", + "timestamp": 12209, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetKeyedProperty.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "LdaModuleVariable.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaModuleVariable.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetNamedProperty.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineNamedOwnProperty.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SetKeyedProperty.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineKeyedOwnProperty.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "StaInArrayLiteral.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DefineKeyedOwnPropertyInLiteral.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Add.ExtraWide", + "timestamp": 12250, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Sub.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mul.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Div.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Mod.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Exp.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseOr.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseXor.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseAnd.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftLeft.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRight.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightLogical.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "AddSmi.ExtraWide", + "timestamp": 12292, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SubSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "MulSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DivSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ModSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ExpSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseOrSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseXorSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseAndSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftLeftSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ShiftRightLogicalSmi.ExtraWide", + "timestamp": 12334, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Inc.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Dec.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Negate.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "BitwiseNot.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DeletePropertyStrict.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "DeletePropertySloppy.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetSuperConstructor.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "FindNonDefaultConstructorOrConstruct.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallAnyReceiver.ExtraWide", + "timestamp": 12375, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty0.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty1.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallProperty2.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver0.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver1.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallUndefinedReceiver2.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallWithSpread.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallRuntime.ExtraWide", + "timestamp": 12417, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallRuntimeForPair.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CallJSRuntime.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "InvokeIntrinsic.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Construct.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ConstructWithSpread.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestEqual.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestEqualStrict.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestLessThan.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestGreaterThan.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestLessThanOrEqual.ExtraWide", + "timestamp": 12459, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestGreaterThanOrEqual.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestInstanceOf.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "TestIn.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToName.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToNumber.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToNumeric.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ToObject.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateRegExpLiteral.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateArrayLiteral.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEmptyArrayLiteral.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateObjectLiteral.ExtraWide", + "timestamp": 12500, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CloneObject.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetTemplateObject.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateClosure.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateBlockContext.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateCatchContext.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateFunctionContext.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateEvalContext.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "CreateWithContext.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpLoop.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Jump.ExtraWide", + "timestamp": 12542, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpConstant.ExtraWide", + "timestamp": 12584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNullConstant.ExtraWide", + "timestamp": 12584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotNullConstant.ExtraWide", + "timestamp": 12584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedConstant.ExtraWide", + "timestamp": 12584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotUndefinedConstant.ExtraWide", + "timestamp": 12584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedOrNullConstant.ExtraWide", + "timestamp": 12584, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfTrueConstant.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfFalseConstant.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfJSReceiverConstant.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanTrueConstant.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanFalseConstant.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanTrue.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfToBooleanFalse.ExtraWide", + "timestamp": 12625, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfTrue.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfFalse.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNull.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotNull.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefined.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfNotUndefined.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfUndefinedOrNull.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "JumpIfJSReceiver.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SwitchOnSmiNoFeedback.ExtraWide", + "timestamp": 12667, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInEnumerate.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInPrepare.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInContinue.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInNext.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ForInStep.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowReferenceErrorIfHole.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ThrowIfNotSuperConstructor.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SwitchOnGeneratorState.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "SuspendGenerator.ExtraWide", + "timestamp": 12709, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "ResumeGenerator.ExtraWide", + "timestamp": 12750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "GetIterator.ExtraWide", + "timestamp": 12750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "IncBlockCounter.ExtraWide", + "timestamp": 12750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": "Abort.ExtraWide", + "timestamp": 12750, + "type": "CODE", + "kind": "BytecodeHandler" + }, + { + "name": " node:internal/main/run_main_module:1:1", + "type": "JS", + "kind": "Unopt", + "func": 0, + "tm": 15375, + "source": { + "script": 80, + "start": 0, + "end": 1182, + "positions": "C0O0C4O1182", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/main/run_main_module:1:1", + "type": "JS", + "kind": "Unopt", + "func": 1, + "tm": 15459, + "source": { + "script": 80, + "start": 0, + "end": 1182, + "positions": "C0O23C5O128C8O128C13O71C18O101C23O198C26O198C31O179C36O246C38O246C43O281C46O367C55O367C60O398C63O402C70O448C75O466C78O466C83O502C88O503C95O1114C98O1114C103O1152C108O1159C113O1160C119O1181", + "inlined": "", + "fns": [] + } + }, + { + "name": "prepareMainThreadExecution node:internal/process/pre_execution:54:36", + "type": "JS", + "kind": "Unopt", + "func": 2, + "tm": 15709, + "source": { + "script": 67, + "start": 1126, + "end": 1275, + "positions": "C20O1178C30O1208C36O1225C40O1185C44O1273", + "inlined": "", + "fns": [] + } + }, + { + "name": "prepareExecution node:internal/process/pre_execution:70:26", + "type": "JS", + "kind": "Unopt", + "func": 3, + "tm": 16584, + "source": { + "script": 67, + "start": 1503, + "end": 3672, + "positions": "C0O1525C5O1538C10O1557C15O1586C18O1586C21O1613C26O1613C29O1730C32O1730C37O1765C40O1765C43O1794C46O1794C49O1819C52O1819C55O1844C58O1844C61O1861C64O1861C67O1881C70O1881C73O1903C76O1903C79O1926C82O1926C85O2014C88O2014C91O2069C94O2069C97O2096C100O2096C103O2130C106O2130C109O2159C115O2159C120O2188C125O2189C129O2209C132O2209C135O2242C139O2266C150O2273C155O2298C160O2266C164O2401C167O2401C171O2427C173O2447C179O2447C184O2490C189O2504C194O2524C199O2491C205O2623C208O2623C211O2661C214O2661C217O2721C220O2721C223O3055C226O3055C229O3270C232O3270C235O3361C241O3361C246O3400C251O3401C257O3443C268O3451C273O3476C279O3443C283O3562C290O3570C292O3562C296O3597C300O3626C303O3626C306O3653C308O3670", + "inlined": "", + "fns": [] + } + }, + { + "name": "refreshRuntimeOptions node:internal/process/pre_execution:177:31", + "type": "JS", + "kind": "Unopt", + "func": 4, + "tm": 16625, + "source": { + "script": 67, + "start": 4871, + "end": 4897, + "positions": "C0O4878C5O4878C9O4896", + "inlined": "", + "fns": [] + } + }, + { + "name": "refreshOptions node:internal/options:39:24", + "type": "JS", + "kind": "Unopt", + "func": 5, + "tm": 16667, + "source": { + "script": 17, + "start": 902, + "end": 960, + "positions": "C0O909C4O920C10O935C14O946C21O959", + "inlined": "", + "fns": [] + } + }, + { + "name": "reconnectZeroFillToggle node:internal/buffer:1074:33", + "type": "JS", + "kind": "Unopt", + "func": 6, + "tm": 16792, + "source": { + "script": 25, + "start": 30714, + "end": 30754, + "positions": "C0O30721C5O30732C11O30730C18O30753", + "inlined": "", + "fns": [] + } + }, + { + "name": "patchProcessObject node:internal/process/pre_execution:188:28", + "type": "JS", + "kind": "Unopt", + "func": 7, + "tm": 17917, + "source": { + "script": 67, + "start": 5351, + "end": 7754, + "positions": "C0O5385C6O5385C11O5431C19O5431C24O5463C30O5463C35O5501C40O5502C44O5628C55O5649C62O5783C65O5783C75O5824C81O5828C88O5628C93O5842C97O5859C101O5874C105O5891C109O5902C112O5910C122O5928C126O5918C130O5969C132O6124C139O6151C146O6155C153O6169C159O6203C166O6207C173O6169C180O6285C186O6285C194O6335C202O6351C209O6355C213O6335C219O6367C222O6375C232O6383C242O6608C248O6608C253O6682C259O6682C264O6654C269O6725C273O6908C282O6908C287O6954C296O6954C301O7007C310O7007C315O7067C324O7067C329O7125C338O7125C343O7185C352O7185C357O7249C366O7249C371O7314C380O7314C385O7385C394O7385C399O7455C408O7455C413O7515C422O7515C427O7585C438O7585C443O7655C454O7655C459O7735C461O7752", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:internal/bootstrap/node:116:8", + "type": "JS", + "kind": "Unopt", + "func": 8, + "tm": 18084, + "source": { + "script": 12, + "start": 4131, + "end": 4547, + "positions": "C0O4146C8O4209C11O4223C19O4260C28O4280C35O4301C38O4301C43O4280C49O4329C54O4361C64O4361C69O4401C78O4408C83O4419C87O4436C96O4443C101O4457C107O4485C116O4492C120O4506C124O4525C126O4534C133O4546", + "inlined": "", + "fns": [] + } + }, + { + "name": "resolve node:path:1095:10", + "type": "JS", + "kind": "Unopt", + "func": 9, + "tm": 18709, + "source": { + "script": 34, + "start": 33911, + "end": 34827, + "positions": "C0O33911C3O33946C6O33977C8O34007C12O34014C16O34027C18O34021C25O34031C27O34075C28O34077C35O34088C42O34094C45O34094C49O34112C59O34142C70O34112C75O34193C81O34200C86O34217C88O34242C100O34268C105O34290C112O34317C120O34356C122O34352C126O34050C131O33989C135O34572C140O34618C151O34587C157O34704C161O34734C166O34745C170O34760C171O34791C177O34798C188O34823", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:path:1086:10", + "type": "JS", + "kind": "Unopt", + "func": 10, + "tm": 20375, + "source": { + "script": 34, + "start": 33760, + "end": 33779, + "positions": "C0O33774C3O33774C8O33774C12O33779", + "inlined": "", + "fns": [] + } + }, + { + "name": "wrappedCwd node:internal/bootstrap/switches/does_own_process_state:136:20", + "type": "JS", + "kind": "Unopt", + "func": 11, + "tm": 20417, + "source": { + "script": 73, + "start": 3560, + "end": 3644, + "positions": "C0O3567C7O3581C12O3593C17O3616C22O3616C29O3603C35O3625C39O3642", + "inlined": "", + "fns": [] + } + }, + { + "name": "normalizeString node:path:66:25", + "type": "JS", + "kind": "Unopt", + "func": 12, + "tm": 20709, + "source": { + "script": 34, + "start": 2161, + "end": 4085, + "positions": "C0O2226C3O2256C5O2277C8O2294C10O2310C12O2328C14O2341C18O2333C23O2373C27O2366C32O2387C37O2394C45O2443C51O2472C53O2494C58O2530C64O2561C66O2581C69O2575C76O2593C83O2631C85O2640C90O2665C97O2672C104O2697C111O2718C114O2753C118O2760C122O2718C130O2769C132O2765C139O2793C142O2828C146O2835C150O2793C158O2844C160O2840C165O2874C172O2881C177O2923C182O2923C188O2979C190O2998C195O3022C198O3046C202O3104C215O3110C221O3210C225O3217C231O3223C234O3223C239O3221C243O3293C246O3320C248O3342C250O3377C256O3384C261O3405C264O3427C266O3462C269O3489C271O3511C273O3551C277O3594C283O3601C293O3610C308O3642C313O3706C319O3713C324O3728C326O3738C330O3750C335O3787C345O3750C363O3821C370O3864C380O3827C386O3881C388O3903C391O3915C395O3934C398O3955C402O3976C404O3989C406O3985C413O4006C418O4022C425O4049C428O2351C433O2315C441O4072C443O4083", + "inlined": "", + "fns": [] + } + }, + { + "name": "isPosixPathSeparator node:path:56:30", + "type": "JS", + "kind": "Unopt", + "func": 13, + "tm": 20750, + "source": { + "script": 34, + "start": 1854, + "end": 1902, + "positions": "C0O1865C2O1881C4O1877C7O1900", + "inlined": "", + "fns": [] + } + }, + { + "name": "normalizeString node:path:66:25", + "type": "JS", + "kind": "Sparkplug", + "func": 12, + "tm": 20959, + "source": { + "script": 34, + "start": 2161, + "end": 4085, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "requireBuiltin node:internal/bootstrap/realm:414:24", + "type": "JS", + "kind": "Sparkplug", + "func": 14, + "tm": 21000, + "source": { + "script": 9, + "start": 13268, + "end": 13610, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "compileForInternalLoader node:internal/bootstrap/realm:377:27", + "type": "JS", + "kind": "Sparkplug", + "func": 15, + "tm": 21542, + "source": { + "script": 9, + "start": 12252, + "end": 13050, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "internalBinding node:internal/bootstrap/realm:185:45", + "type": "JS", + "kind": "Sparkplug", + "func": 16, + "tm": 21584, + "source": { + "script": 9, + "start": 5979, + "end": 6217, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "isPosixPathSeparator node:path:56:30", + "type": "JS", + "kind": "Sparkplug", + "func": 13, + "tm": 21584, + "source": { + "script": 34, + "start": 1854, + "end": 1902, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeGlobalConsole node:internal/console/constructor:690:33", + "type": "JS", + "kind": "Unopt", + "func": 17, + "tm": 21667, + "source": { + "script": 44, + "start": 20457, + "end": 21464, + "positions": "C0O20457C12O20477C19O20491C21O20490C30O20508C35O20521C42O20535C44O20534C53O20551C59O20662C67O20662C72O20593C77O20601C82O20629C87O20706C95O20711C100O20736C106O20754C111O20782C112O20789C113O20831C121O20831C126O20813C131O20887C143O20906C148O20887C153O20942C160O20942C165O20992C172O21018C177O21018C185O20992C191O21075C198O21075C203O21075C205O21110C215O21110C237O21103C267O21103C270O21161C276O21161C283O21179C287O21200C293O21200C298O21092C365O21338C370O21338C375O21463", + "inlined": "", + "fns": [] + } + }, + { + "name": "value node:internal/console/constructor:205:20", + "type": "JS", + "kind": "Unopt", + "func": 18, + "tm": 22500, + "source": { + "script": 44, + "start": 5840, + "end": 6477, + "positions": "C0O5840C15O5861C16O5861C18O5879C19O5879C21O5893C33O5943C38O6041C46O6148C60O6210C65O6308C73O6419C87O5893C93O6476", + "inlined": "", + "fns": [] + } + }, + { + "name": "value node:internal/console/constructor:235:20", + "type": "JS", + "kind": "Unopt", + "func": 19, + "tm": 22584, + "source": { + "script": 44, + "start": 6577, + "end": 7977, + "positions": "C17O6633C27O6695C34O6737C52O6807C55O6777C73O6877C86O6974C89O6944C104O7023C111O7065C126O7105C129O7105C144O7157C151O7179C166O7213C169O7209C187O7304C191O7314C198O7336C213O7370C216O7366C235O7392C239O7405C246O7427C261O7457C275O7479C279O7492C286O7514C300O7544C314O7561C318O7576C325O7598C340O7628C354O7643C358O7668C365O7710C380O7750C394O7788C398O7808C407O6633C413O7976", + "inlined": "", + "fns": [] + } + }, + { + "name": "createWriteErrorHandler node:internal/console/constructor:357:33", + "type": "JS", + "kind": "Unopt", + "func": 20, + "tm": 22625, + "source": { + "script": 44, + "start": 10694, + "end": 11551, + "positions": "C0O10694C13O10723C17O11549", + "inlined": "", + "fns": [] + } + }, + { + "name": "addReadOnlyProcessAlias node:internal/process/pre_execution:248:33", + "type": "JS", + "kind": "Unopt", + "func": 21, + "tm": 22667, + "source": { + "script": 67, + "start": 7788, + "end": 8037, + "positions": "C16O7840C21O7840C26O7866C28O7883C36O7913C43O7999C49O8017C56O7883C62O8036", + "inlined": "", + "fns": [] + } + }, + { + "name": "getOptionValue node:internal/options:44:24", + "type": "JS", + "kind": "Unopt", + "func": 22, + "tm": 22667, + "source": { + "script": 17, + "start": 985, + "end": 1228, + "positions": "C0O1018C3O1018C7O1063C15O1063C22O1113C30O1135C38O1135C43O1122C47O1113C53O1150C55O1175C60O1181C61O1203C66O1203C74O1218C81O1226", + "inlined": "", + "fns": [] + } + }, + { + "name": "getCLIOptionsFromBinding node:internal/options:18:34", + "type": "JS", + "kind": "Unopt", + "func": 23, + "tm": 22750, + "source": { + "script": 17, + "start": 497, + "end": 598, + "positions": "C0O504C6O527C11O554C15O539C28O578C32O596", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupTraceCategoryState node:internal/process/pre_execution:460:33", + "type": "JS", + "kind": "Unopt", + "func": 24, + "tm": 22917, + "source": { + "script": 67, + "start": 13707, + "end": 13934, + "positions": "C0O13749C6O13749C11O13722C16O13821C22O13821C27O13792C32O13863C35O13888C40O13863C45O13933", + "inlined": "", + "fns": [] + } + }, + { + "name": "toggleTraceCategoryState node:internal/process/per_thread:410:34", + "type": "JS", + "kind": "Unopt", + "func": 25, + "tm": 22959, + "source": { + "script": 27, + "start": 12013, + "end": 12310, + "positions": "C0O12037C4O12066C10O12101C16O12132C21O12176C26O12177C33O12122C39O12201C44O12222C49O12222C55O12241C61O12273C66O12294C71O12294C76O12309", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupInspectorHooks node:internal/process/pre_execution:466:29", + "type": "JS", + "kind": "Unopt", + "func": 26, + "tm": 23417, + "source": { + "script": 67, + "start": 13964, + "end": 14518, + "positions": "C0O14307C6O14311C11O14336C17O14402C23O14402C28O14371C33O14385C38O14448C44O14448C49O14476C54O14477C61O14517", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupWarningHandler node:internal/process/pre_execution:261:29", + "type": "JS", + "kind": "Unopt", + "func": 27, + "tm": 23459, + "source": { + "script": 67, + "start": 8067, + "end": 8559, + "positions": "C0O8067C11O8130C19O8130C24O8086C30O8101C36O8169C46O8173C57O8217C62O8221C69O8238C74O8253C79O8261C90O8261C96O8388C103O8392C108O8422C120O8422C125O8558", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupUndici node:internal/process/pre_execution:283:21", + "type": "JS", + "kind": "Unopt", + "func": 28, + "tm": 23500, + "source": { + "script": 67, + "start": 8654, + "end": 10014, + "positions": "C0O8654C19O8661C26O8665C30O8685C36O8710C37O8717C38O8729C39O8729C41O9133C51O9138C62O9347C73O9363C82O9347C87O9397C98O9420C109O9450C120O9492C131O9533C142O9575C150O9397C155O9690C163O9690C168O9721C178O9722C183O9865C193O9869C199O9919C210O9942C221O9973C229O9919C235O10013", + "inlined": "", + "fns": [] + } + }, + { + "name": "getEmbedderOptions node:internal/options:32:28", + "type": "JS", + "kind": "Unopt", + "func": 29, + "tm": 23542, + "source": { + "script": 17, + "start": 760, + "end": 877, + "positions": "C0O767C6O795C11O813C17O811C23O852C27O875", + "inlined": "", + "fns": [] + } + }, + { + "name": "lazyInterface node:internal/process/pre_execution:298:25", + "type": "JS", + "kind": "Unopt", + "func": 30, + "tm": 23542, + "source": { + "script": 67, + "start": 8910, + "end": 9129, + "positions": "C0O8910C9O8923C14O8989C22O9047C32O9125", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupWebCrypto node:internal/process/pre_execution:341:24", + "type": "JS", + "kind": "Unopt", + "func": 31, + "tm": 23625, + "source": { + "script": 67, + "start": 10141, + "end": 11070, + "positions": "C0O10148C5O10152C9O10172C17O10199C23O10199C29O10259C30O10266C31O10274C37O10278C42O10303C48O10322C55O10360C73O10322C78O10633C85O10661C96O10633C103O10771C110O10792C123O10861C154O10861C167O10771C173O11069", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupCustomEvent node:internal/process/pre_execution:389:26", + "type": "JS", + "kind": "Unopt", + "func": 32, + "tm": 23667, + "source": { + "script": 67, + "start": 11724, + "end": 11976, + "positions": "C0O11731C5O11735C9O11755C17O11782C23O11782C29O11844C30O11851C31O11882C37O11882C42O11866C47O11918C54O11934C63O11918C69O11975", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupCodeCoverage node:internal/process/pre_execution:374:27", + "type": "JS", + "kind": "Unopt", + "func": 33, + "tm": 23709, + "source": { + "script": 67, + "start": 11098, + "end": 11593, + "positions": "C0O11404C3O11416C8O11420C16O11447C22O11447C28O11501C31O11509C38O11538C44O11565C49O11569C54O11538C58O11530C63O11592", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupDebugEnv node:internal/process/pre_execution:420:23", + "type": "JS", + "kind": "Unopt", + "func": 34, + "tm": 23750, + "source": { + "script": 67, + "start": 12478, + "end": 12687, + "positions": "C0O12485C6O12485C11O12518C19O12546C24O12550C29O12519C34O12565C42O12569C48O12613C54O12613C59O12648C64O12662C69O12663C74O12686", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeDebugEnv node:internal/util/debuglog:21:28", + "type": "JS", + "kind": "Unopt", + "func": 35, + "tm": 23792, + "source": { + "script": 22, + "start": 530, + "end": 976, + "positions": "C0O545C7O556C13O581C24O694C38O694C45O738C56O739C63O767C74O768C82O818C94O833C110O818C115O818C117O856C126O868C138O944C145O956C152O975", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeReport node:internal/process/pre_execution:408:26", + "type": "JS", + "kind": "Unopt", + "func": 36, + "tm": 23917, + "source": { + "script": 67, + "start": 12230, + "end": 12454, + "positions": "C0O12237C11O12258C16O12350C24O12237C30O12453", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializePermission node:internal/process/pre_execution:573:30", + "type": "JS", + "kind": "Unopt", + "func": 37, + "tm": 24000, + "source": { + "script": 67, + "start": 17535, + "end": 19389, + "positions": "C0O17573C8O17573C13O17620C15O17654C22O17670C26O17765C29O17773C41O17773C47O17900C53O17900C58O17886C63O17891C68O17962C73O18049C90O18041C120O18041C123O18068C129O18072C135O18104C139O18112C151O18147C166O18190C175O18112C181O18030C253O18306C258O18389C275O18381C305O18381C308O18427C314O18427C319O18465C327O18472C333O18486C338O18490C348O18490C355O18515C359O18523C371O18553C386O18583C393O18656C400O18699C409O18523C415O18370C487O18827C498O18848C504O18960C512O18970C518O18983C528O18827C535O19054C540O19173C545O19195C550O19173C556O19388", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/process/pre_execution:626:53", + "type": "JS", + "kind": "Unopt", + "func": 38, + "tm": 24042, + "source": { + "script": 67, + "start": 19221, + "end": 19381, + "positions": "C0O19253C5O19253C10O19291C16O19309C26O19315C31O19309C33O19380", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeSourceMapsHandlers node:internal/process/pre_execution:707:38", + "type": "JS", + "kind": "Unopt", + "func": 39, + "tm": 24042, + "source": { + "script": 67, + "start": 21949, + "end": 22110, + "positions": "C0O21996C6O21996C11O21968C16O22047C18O22068C24O22068C29O22047C34O22109", + "inlined": "", + "fns": [] + } + }, + { + "name": "setSourceMapsEnabled node:internal/source_map/source_map_cache:52:30", + "type": "JS", + "kind": "Unopt", + "func": 40, + "tm": 24084, + "source": { + "script": 38, + "start": 1690, + "end": 2203, + "positions": "C0O1700C8O1700C13O1732C18O1732C22O1760C26O1816C32O1816C37O1789C42O1872C47O1872C53O1930C59O2089C65O2089C70O2062C75O2121C80O2121C84O2177C86O2195C93O2202", + "inlined": "", + "fns": [] + } + }, + { + "name": "validateBoolean node:internal/validators:216:25", + "type": "JS", + "kind": "Unopt", + "func": 41, + "tm": 24500, + "source": { + "script": 15, + "start": 5595, + "end": 5706, + "positions": "C0O5613C6O5649C22O5655C27O5649C29O5705", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeDeprecations node:internal/process/pre_execution:484:32", + "type": "JS", + "kind": "Unopt", + "func": 42, + "tm": 25084, + "source": { + "script": 67, + "start": 14744, + "end": 16665, + "positions": "C0O14773C6O14773C11O14759C16O14828C24O14828C29O15019C35O15019C40O15060C46O15060C51O15113C73O15105C101O15105C104O15431C112O15451C116O15493C127O15567C138O15657C149O15612C158O15478C167O15716C170O15449C174O15094C239O15993C245O15993C250O15972C255O16022C257O16050C268O16071C275O16212C279O16050C284O16245C288O16275C294O16311C304O16388C311O16293C316O16291C320O16474C326O16516C337O16498C342O16496C347O16664", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeDns node:internal/dns/utils:202:23", + "type": "JS", + "kind": "Unopt", + "func": 43, + "tm": 25167, + "source": { + "script": 71, + "start": 5449, + "end": 5813, + "positions": "C0O5477C8O5477C13O5517C15O5542C28O5551C36O5652C38O5661C44O5684C49O5689C54O5717C55O5724C56O5732C66O5732C71O5812", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupSymbolDisposePolyfill node:internal/process/pre_execution:138:36", + "type": "JS", + "kind": "Unopt", + "func": 44, + "tm": 25542, + "source": { + "script": 67, + "start": 3709, + "end": 4409, + "positions": "C0O3879C5O3897C13O3925C20O3946C33O4055C39O3925C44O4167C49O4185C57O4218C64O4239C77O4353C83O4218C89O4408", + "inlined": "", + "fns": [] + } + }, + { + "name": "assert node:internal/assert:11:16", + "type": "JS", + "kind": "Unopt", + "func": 45, + "tm": 25584, + "source": { + "script": 11, + "start": 172, + "end": 307, + "positions": "C0O193C4O242C7O242C11O259C13O265C18O259C20O306", + "inlined": "", + "fns": [] + } + }, + { + "name": "readPolicyFromDisk node:internal/process/pre_execution:635:28", + "type": "JS", + "kind": "Unopt", + "func": 46, + "tm": 25667, + "source": { + "script": 67, + "start": 19418, + "end": 21210, + "positions": "C0O19452C10O19452C15O19495C17O19525C21O19533C35O19533C41O19658C49O19658C55O19635C60O19650C65O19777C67O19794C75O19798C81O19813C87O19814C94O19868C101O19937C105O19959C111O19959C117O19937C123O19973C134O19989C138O20003C146O20017C152O20075C160O20075C165O20109C175O20109C182O20184C192O20184C197O20226C199O20279C207O20279C212O20357C220O20357C226O20325C231O20337C236O20406C242O20406C248O20456C254O20456C260O20515C262O20541C264O20565C268O20546C273O20656C275O20672C280O20606C285O20634C290O20698C296O20734C302O20734C307O20775C313O20775C319O20804C325O20824C329O20811C334O20844C341O20891C343O20920C345O20961C351O20983C361O20983C368O20961C374O20574C379O20528C383O21018C387O21045C401O21051C406O21045C407O21134C415O21162C419O21192C429O21204C431O21209", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupStacktracePrinterOnSigint node:internal/process/pre_execution:398:40", + "type": "JS", + "kind": "Unopt", + "func": 47, + "tm": 25709, + "source": { + "script": 67, + "start": 12017, + "end": 12203, + "positions": "C0O12024C8O12029C14O12069C15O12076C16O12110C22O12110C27O12091C32O12160C38O12193C43O12193C48O12202", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeReportSignalHandlers node:internal/process/pre_execution:428:40", + "type": "JS", + "kind": "Unopt", + "func": 48, + "tm": 25750, + "source": { + "script": 67, + "start": 12788, + "end": 12937, + "positions": "C0O12795C8O12799C14O12872C20O12872C25O12851C30O12912C34O12936", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeHeapSnapshotSignalHandlers node:internal/process/pre_execution:435:46", + "type": "JS", + "kind": "Unopt", + "func": 49, + "tm": 25750, + "source": { + "script": 67, + "start": 12984, + "end": 13673, + "positions": "C0O12984C20O13006C30O13006C34O13006C36O13071C46O13071C50O13071C52O13110C56O13127C57O13134C58O13138C66O13138C71O13168C79O13169C84O13229C92O13229C97O13207C103O13404C108O13412C119O13412C125O13540C132O13544C137O13572C149O13572C154O13672", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupChildProcessIpcChannel node:internal/process/pre_execution:545:37", + "type": "JS", + "kind": "Unopt", + "func": 50, + "tm": 25792, + "source": { + "script": 67, + "start": 16703, + "end": 17232, + "positions": "C0O16710C3O16722C8O16726C14O16764C20O16764C25O16808C33O16831C38O16835C46O16808C52O16861C53O16871C57O16861C61O16952C64O16967C73O17025C76O17033C81O17037C90O17084C93O17099C102O17141C108O17141C113O17165C118O17166C124O17205C127O17220C132O17205C137O17231", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeClusterIPC node:internal/process/pre_execution:564:30", + "type": "JS", + "kind": "Unopt", + "func": 51, + "tm": 25834, + "source": { + "script": 67, + "start": 17263, + "end": 17504, + "positions": "C0O17270C3O17282C10O17286C18O17301C23O17305C29O17343C35O17343C40O17375C45O17375C49O17464C52O17479C62O17503", + "inlined": "", + "fns": [] + } + }, + { + "name": "runDeserializeCallbacks node:internal/v8/startup_snapshot:39:33", + "type": "JS", + "kind": "Unopt", + "func": 52, + "tm": 25834, + "source": { + "script": 53, + "start": 863, + "end": 1004, + "positions": "C0O905C5O898C11O905C16O949C21O970C26O970C33O927C40O940C44O983C48O870C53O1003", + "inlined": "", + "fns": [] + } + }, + { + "name": "setupUserModules node:internal/process/pre_execution:163:26", + "type": "JS", + "kind": "Unopt", + "func": 53, + "tm": 26000, + "source": { + "script": 67, + "start": 4436, + "end": 4839, + "positions": "C10O4465C13O4465C16O4490C19O4490C23O4547C29O4547C34O4589C39O4607C45O4589C49O4700C53O4726C54O4733C55O4740C58O4740C61O4808C64O4808C68O4838", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeCJSLoader node:internal/process/pre_execution:685:29", + "type": "JS", + "kind": "Unopt", + "func": 54, + "tm": 26000, + "source": { + "script": 67, + "start": 21240, + "end": 21333, + "positions": "C0O21273C6O21273C11O21255C16O21315C20O21332", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeCJS node:internal/modules/cjs/loader:383:23", + "type": "JS", + "kind": "Unopt", + "func": 55, + "tm": 26084, + "source": { + "script": 63, + "start": 10714, + "end": 11192, + "positions": "C0O10816C5O10830C10O10830C15O10876C20O10900C23O10900C27O10898C31O10933C36O10933C39O10963C44O10968C48O10988C54O11016C57O11023C62O11023C66O11110C75O11131C80O11167C84O11125C89O11191", + "inlined": "", + "fns": [] + } + }, + { + "name": "getCanBeRequiredByUsersWithoutSchemeList node:internal/bootstrap/realm:313:50", + "type": "JS", + "kind": "Unopt", + "func": 56, + "tm": 27917, + "source": { + "script": 9, + "start": 9879, + "end": 9948, + "positions": "C0O9888C11O9905C14O9895C18O9944", + "inlined": "", + "fns": [] + } + }, + { + "name": "desc.value node:internal/per_context/primordials:387:32", + "type": "JS", + "kind": "Unopt", + "func": 57, + "tm": 27959, + "source": { + "script": 6, + "start": 11247, + "end": 11306, + "positions": "C0O11264C7O11271C12O11294", + "inlined": "", + "fns": [] + } + }, + { + "name": "SafeIterator node:internal/per_context/primordials:332:16", + "type": "JS", + "kind": "Unopt", + "func": 58, + "tm": 28709, + "source": { + "script": 6, + "start": 9510, + "end": 9570, + "positions": "C0O9529C3O9546C7O9544C12O9569", + "inlined": "", + "fns": [] + } + }, + { + "name": "next node:internal/per_context/primordials:335:9", + "type": "JS", + "kind": "Unopt", + "func": 59, + "tm": 28750, + "source": { + "script": 6, + "start": 9579, + "end": 9624, + "positions": "C0O9590C3O9607C8O9597C12O9618", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeCjsConditions node:internal/modules/helpers:65:33", + "type": "JS", + "kind": "Unopt", + "func": 60, + "tm": 28792, + "source": { + "script": 64, + "start": 1806, + "end": 2166, + "positions": "C0O1836C8O1836C13O1887C21O1887C26O1944C37O2055C50O2119C95O2143C142O2071C150O2069C157O2165", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._initPaths node:internal/modules/cjs/loader:1530:29", + "type": "JS", + "kind": "Unopt", + "func": 61, + "tm": 29167, + "source": { + "script": 63, + "start": 49693, + "end": 50650, + "positions": "C0O49716C9O49736C14O49740C22O49754C28O49754C33O49793C42O49813C47O49817C55O49829C61O49829C66O50024C74O50040C77O50045C85O50061C93O50045C103O50083C106O50088C114O50104C125O50088C131O50144C140O50145C143O50150C157O50150C169O50189C173O50208C180O50237C183O50242C191O50242C198O50208C203O50284C210O50313C213O50318C221O50318C228O50284C233O50361C237O50381C244O50415C249O50443C254O50474C257O50479C262O50443C270O50497C273O50415C279O50381C284O50521C286O50533C292O50594C297O50615C302O50635C305O50615C309O50613C314O50649", + "inlined": "", + "fns": [] + } + }, + { + "name": "resolve node:path:1095:10", + "type": "JS", + "kind": "Sparkplug", + "func": 9, + "tm": 29250, + "source": { + "script": 34, + "start": 33911, + "end": 34827, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "SafeMap node:internal/per_context/primordials:413:16", + "type": "JS", + "kind": "Sparkplug", + "func": 62, + "tm": 29250, + "source": { + "script": 6, + "start": 11975, + "end": 11992, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "getOptionValue node:internal/options:44:24", + "type": "JS", + "kind": "Sparkplug", + "func": 22, + "tm": 29292, + "source": { + "script": 17, + "start": 985, + "end": 1228, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "exposeLazyInterfaces node:internal/util:683:30", + "type": "JS", + "kind": "Sparkplug", + "func": 63, + "tm": 29334, + "source": { + "script": 16, + "start": 18482, + "end": 18553, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "defineLazyProperties node:internal/util:600:30", + "type": "JS", + "kind": "Sparkplug", + "func": 64, + "tm": 30209, + "source": { + "script": 16, + "start": 16645, + "end": 17549, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "getCLIOptionsFromBinding node:internal/options:18:34", + "type": "JS", + "kind": "Sparkplug", + "func": 23, + "tm": 30250, + "source": { + "script": 17, + "start": 497, + "end": 598, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "next node:internal/per_context/primordials:335:9", + "type": "JS", + "kind": "Sparkplug", + "func": 59, + "tm": 30250, + "source": { + "script": 6, + "start": 9579, + "end": 9624, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "SafeSet node:internal/per_context/primordials:426:16", + "type": "JS", + "kind": "Sparkplug", + "func": 65, + "tm": 30250, + "source": { + "script": 6, + "start": 12304, + "end": 12321, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeESMLoader node:internal/process/pre_execution:690:29", + "type": "JS", + "kind": "Unopt", + "func": 66, + "tm": 30292, + "source": { + "script": 67, + "start": 21363, + "end": 21910, + "positions": "C0O21410C6O21410C11O21392C16O21451C20O21614C28O21618C34O21734C40O21734C45O21683C50O21691C55O21709C60O21780C66O21780C71O21799C73O21809C77O21823C79O21843C83O21867C85O21886C90O21909", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeESM node:internal/modules/esm/utils:192:23", + "type": "JS", + "kind": "Unopt", + "func": 67, + "tm": 30334, + "source": { + "script": 66, + "start": 6390, + "end": 6744, + "positions": "C10O6419C12O6435C18O6455C21O6455C24O6605C32O6605C36O6674C44O6674C49O6743", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeDefaultConditions node:internal/modules/esm/utils:60:37", + "type": "JS", + "kind": "Unopt", + "func": 68, + "tm": 30667, + "source": { + "script": 66, + "start": 1463, + "end": 1809, + "positions": "C0O1493C8O1493C13O1544C21O1544C26O1601C37O1637C50O1705C95O1729C140O1657C147O1655C153O1753C160O1788C165O1776C173O1774C180O1808", + "inlined": "", + "fns": [] + } + }, + { + "name": "get hasLoadedAnyUserCJSModule node:internal/modules/cjs/loader:72:32", + "type": "JS", + "kind": "Unopt", + "func": 69, + "tm": 30709, + "source": { + "script": 63, + "start": 2217, + "end": 2257, + "positions": "C0O2222C4O2255", + "inlined": "", + "fns": [] + } + }, + { + "name": "loadPreloadModules node:internal/process/pre_execution:722:28", + "type": "JS", + "kind": "Unopt", + "func": 70, + "tm": 30709, + "source": { + "script": 67, + "start": 22398, + "end": 22719, + "positions": "C0O22485C8O22485C13O22516C15O22553C21O22560C26O22637C32O22637C37O22593C42O22603C47O22681C52O22718", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._preloadModules node:internal/modules/cjs/loader:1564:34", + "type": "JS", + "kind": "Unopt", + "func": 71, + "tm": 30750, + "source": { + "script": 63, + "start": 50792, + "end": 51381, + "positions": "C0O50807C5O50812C11O50838C12O50845C13O50851C17O50864C23O51059C33O51059C42O51109C45O51131C53O51156C58O51156C63O51131C68O51122C85O51184C88O51190C95O51195C100O51217C106O51230C114O51245C116O51245C119O51279C121O51295C125O51284C130O51314C135O51346C139O51314C144O51304C149O51266C153O51358C157O51371C164O51380", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module node:internal/modules/cjs/loader:252:16", + "type": "JS", + "kind": "Unopt", + "func": 72, + "tm": 30792, + "source": { + "script": 63, + "start": 7243, + "end": 7985, + "positions": "C14O7265C16O7273C20O7281C22O7293C25O7298C30O7298C35O7291C39O7313C52O7313C57O7352C62O7370C67O7370C73O7391C84O7391C89O7430C90O7444C94O7454C95O7466C99O7477C101O7491C105O7503C107O7533C112O7533C118O7541C126O7555C128O7593C133O7593C138O7637C143O7637C149O7733C159O7765C162O7765C171O7733C176O7849C181O7869C191O7891C194O7891C200O7849C205O7936C207O7941C212O7965C217O7984", + "inlined": "", + "fns": [] + } + }, + { + "name": "dirname node:path:1278:10", + "type": "JS", + "kind": "Unopt", + "func": 73, + "tm": 30834, + "source": { + "script": 34, + "start": 38877, + "end": 39546, + "positions": "C0O38890C8O38890C13O38933C19O38940C24O38953C26O38964C27O38985C34O38985C42O39024C44O39020C48O39058C51O39085C53O39113C57O39120C61O39127C63O39127C68O39146C73O39150C81O39189C83O39185C88O39219C92O39250C97O39269C101O39356C103O39135C108O39095C112O39397C114O39405C119O39419C129O39446C130O39451C136O39470C141O39483C143O39495C144O39500C157O39507C162O39542", + "inlined": "", + "fns": [] + } + }, + { + "name": "setOwnProperty node:internal/util:723:24", + "type": "JS", + "kind": "Unopt", + "func": 74, + "tm": 30875, + "source": { + "script": 16, + "start": 19520, + "end": 19687, + "positions": "C0O19542C5O19575C12O19653C22O19549C27O19685", + "inlined": "", + "fns": [] + } + }, + { + "name": "updateChildren node:internal/modules/cjs/loader:217:24", + "type": "JS", + "kind": "Unopt", + "func": 75, + "tm": 30917, + "source": { + "script": 63, + "start": 6182, + "end": 6361, + "positions": "C0O6225C7O6231C15O6245C19O6263C23O6271C26O6271C33O6319C38O6319C44O6360", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/util:794:18", + "type": "JS", + "kind": "Unopt", + "func": 76, + "tm": 30917, + "source": { + "script": 16, + "start": 21797, + "end": 21917, + "positions": "C0O21806C10O21841C13O21849C19O21847C25O21870C29O21882C35O21900C39O21913", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/cjs/loader:117:3", + "type": "JS", + "kind": "Unopt", + "func": 77, + "tm": 30959, + "source": { + "script": 63, + "start": 3473, + "end": 3564, + "positions": "C0O3480C8O3480C20O3522C27O3564", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._nodeModulePaths node:internal/modules/cjs/loader:793:37", + "type": "JS", + "kind": "Unopt", + "func": 78, + "tm": 31000, + "source": { + "script": 63, + "start": 24237, + "end": 25417, + "positions": "C0O24292C5O24304C10O24304C17O24483C19O24492C24O24509C28O24534C29O24783C32O24809C36O24816C40O24825C42O24840C47O24850C48O24850C53O24882C58O24882C64O24924C66O24937C68O24933C73O24967C75O24977C77O24973C82O24996C89O25047C100O25047C108O25083C112O24996C117O25133C120O25151C124O25171C126O25177C131O25195C138O25206C144O25210C149O25232C156O25264C159O24858C164O24791C168O25351C176O25351C181O25400C183O25413", + "inlined": "", + "fns": [] + } + }, + { + "name": "internalRequire node:internal/modules/cjs/loader:167:25", + "type": "JS", + "kind": "Unopt", + "func": 79, + "tm": 31042, + "source": { + "script": 63, + "start": 4815, + "end": 5116, + "positions": "C0O4832C8O4832C13O4860C15O4867C20O4881C36O4887C41O4881C42O4996C51O5008C60O5024C63O5038C76O5038C93O5095C102O5107C126O5115", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._load node:internal/modules/cjs/loader:950:24", + "type": "JS", + "kind": "Unopt", + "func": 80, + "tm": 31125 + }, + { + "name": "logger node:internal/util/debuglog:100:18", + "type": "JS", + "kind": "Unopt", + "func": 81, + "tm": 31167, + "source": { + "script": 22, + "start": 2965, + "end": 3160, + "positions": "C0O2965C3O2997C24O3021C30O3038C34O3028C38O3043C39O3058C45O3075C51O3084C55O3065C60O3089C61O3105C65O3112C72O3125C77O3121C83O3112C88O3150", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/per_context/primordials:338:21", + "type": "JS", + "kind": "Unopt", + "func": 82, + "tm": 31209, + "source": { + "script": 6, + "start": 9645, + "end": 9674, + "positions": "C0O9656C2O9668", + "inlined": "", + "fns": [] + } + }, + { + "name": "debug node:internal/util/debuglog:81:15", + "type": "JS", + "kind": "Unopt", + "func": 83, + "tm": 31209, + "source": { + "script": 22, + "start": 2453, + "end": 2847, + "positions": "C0O2453C3O2472C6O2472C9O2580C16O2601C22O2588C30O2586C36O2620C42O2656C47O2659C50O2656C54O2684C75O2708C81O2725C85O2715C89O2730C90O2745C96O2762C102O2771C106O2752C111O2776C112O2792C116O2799C123O2812C128O2808C134O2799C139O2837", + "inlined": "", + "fns": [] + } + }, + { + "name": "init node:internal/util/debuglog:77:16", + "type": "JS", + "kind": "Unopt", + "func": 84, + "tm": 31250, + "source": { + "script": 22, + "start": 2355, + "end": 2438, + "positions": "C0O2364C10O2370C14O2368C16O2407C26O2417C33O2415C40O2437", + "inlined": "", + "fns": [] + } + }, + { + "name": "testEnabled node:internal/util/debuglog:31:19", + "type": "JS", + "kind": "Unopt", + "func": 85, + "tm": 31250, + "source": { + "script": 22, + "start": 958, + "end": 969, + "positions": "C0O964C1O969", + "inlined": "", + "fns": [] + } + }, + { + "name": "debuglogImpl node:internal/util/debuglog:54:22", + "type": "JS", + "kind": "Unopt", + "func": 86, + "tm": 31292, + "source": { + "script": 22, + "start": 1554, + "end": 2091, + "positions": "C0O1554C9O1573C18O1587C23O1614C34O1647C39O1655C43O1647C45O1666C55O1666C59O1698C71O1709C75O1714C83O2030C97O2048C99O2046C103O2066C112O2083C115O2089", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/cjs/loader:357:66", + "type": "JS", + "kind": "Unopt", + "func": 87, + "tm": 31292, + "source": { + "script": 63, + "start": 9947, + "end": 9972, + "positions": "C0O9959C2O9965C9O9971", + "inlined": "", + "fns": [] + } + }, + { + "name": "noop node:internal/util/debuglog:46:14", + "type": "JS", + "kind": "Unopt", + "func": 88, + "tm": 31334, + "source": { + "script": 22, + "start": 1404, + "end": 1412, + "positions": "C1O1411", + "inlined": "", + "fns": [] + } + }, + { + "name": "reportModuleToWatchMode node:internal/modules/cjs/loader:228:33", + "type": "JS", + "kind": "Unopt", + "func": 89, + "tm": 31334, + "source": { + "script": 63, + "start": 6510, + "end": 6634, + "positions": "C0O6525C5O6529C13O6570C19O6582C22O6590C32O6614C41O6615C51O6590C57O6633", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/cjs/loader:119:45", + "type": "JS", + "kind": "Unopt", + "func": 90, + "tm": 31375, + "source": { + "script": 63, + "start": 3613, + "end": 3656, + "positions": "C0O3631C3O3627C8O3631C12O3656", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._resolveFilename node:internal/modules/cjs/loader:1058:35", + "type": "JS", + "kind": "Unopt", + "func": 91, + "tm": 31459 + }, + { + "name": "normalizeRequirableId node:internal/bootstrap/realm:292:31", + "type": "JS", + "kind": "Unopt", + "func": 92, + "tm": 31500, + "source": { + "script": 9, + "start": 9252, + "end": 9576, + "positions": "C0O9263C10O9267C17O9336C27O9336C33O9371C38O9389C43O9389C50O9435C52O9455C55O9475C60O9493C65O9493C72O9533C74O9543C75O9555C76O9572", + "inlined": "", + "fns": [] + } + }, + { + "name": "canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36", + "type": "JS", + "kind": "Unopt", + "func": 93, + "tm": 31500, + "source": { + "script": 9, + "start": 9152, + "end": 9220, + "positions": "C0O9163C7O9208C12O9208C17O9216", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._resolveLookupPaths node:internal/modules/cjs/loader:839:38", + "type": "JS", + "kind": "Unopt", + "func": 94, + "tm": 31542, + "source": { + "script": 63, + "start": 25560, + "end": 26839, + "positions": "C0O25582C5O25600C10O25600C17O25638C25O25638C30O25682C31O25694C32O25737C39O25741C47O25775C52O25801C59O25808C66O25821C72O25821C80O25855C87O25872C93O25872C101O25906C108O25925C114O25938C120O25938C128O25972C133O26023C135O26034C142O26044C149O26051C158O26069C165O26097C168O26077C173O26117C178O26158C183O26117C190O26185C195O26217C209O26217C214O26281C220O26288C230O26307C231O26354C235O26377C241O26391C247O26562C252O26574C266O26574C271O26629C273O26646C274O26654C282O26721C290O26654C295O26747C304O26748C307O26753C312O26768C317O26753C329O26782C337O26782C342O26820C344O26837", + "inlined": "", + "fns": [] + } + }, + { + "name": "trySelfParentPath node:internal/modules/cjs/loader:520:27", + "type": "JS", + "kind": "Unopt", + "func": 95, + "tm": 31584, + "source": { + "script": 63, + "start": 15194, + "end": 15461, + "positions": "C0O15207C4O15222C5O15235C6O15252C12O15282C16O15291C17O15312C24O15315C29O15338C36O15341C44O15383C47O15398C52O15398C59O15406C62O15411C66O15404C69O15415C72O15436C73O15449C75O15460", + "inlined": "", + "fns": [] + } + }, + { + "name": "trySelf node:internal/modules/cjs/loader:539:17", + "type": "JS", + "kind": "Unopt", + "func": 96, + "tm": 31667, + "source": { + "script": 63, + "start": 15685, + "end": 16597, + "positions": "C0O15711C4O15730C5O15743C6O15786C11O15804C16O15804C22O15763C27O15774C32O15836C36O15852C43O15875C49O15901C50O15914C51O15926C53O15959C57O15951C62O15971C67O15997C72O16043C84O16001C91O16059C96O16077C99O16111C104O16116C109O16077C114O16075C120O16140C121O16153C125O16205C131O16205C136O16179C141O16250C146O16308C151O16330C155O16308C162O16372C165O16372C172O16399C175O16399C185O16279C197O16257C202O16441C214O16462C217O16468C224O16473C229O16509C236O16553C240O16515C245O16509C246O16583C248O16583", + "inlined": "", + "fns": [] + } + }, + { + "name": "readPackageScope node:internal/modules/package_json_reader:149:26", + "type": "JS", + "kind": "Unopt", + "func": 97, + "tm": 31709, + "source": { + "script": 65, + "start": 4262, + "end": 5057, + "positions": "C0O4305C7O4339C10O4305C16O4351C18O4395C23O4406C28O4406C33O4430C40O4485C43O4447C49O4495C62O4507C69O4651C75O4677C78O4688C88O4715C90O4713C94O4688C102O4729C103O4742C104O4753C111O4792C116O4796C120O4757C127O4823C128O4836C129O4861C134O4885C136O4883C140O4861C145O4905C151O4921C158O4944C164O4965C170O4984C171O5017C173O5017C178O4421C182O5042C183O5055", + "inlined": "", + "fns": [] + } + }, + { + "name": "isEnabled node:internal/process/permission:16:12", + "type": "JS", + "kind": "Unopt", + "func": 98, + "tm": 31917, + "source": { + "script": 46, + "start": 324, + "end": 559, + "positions": "C0O333C6O410C12O410C17O391C22O445C25O470C32O468C38O525C42O555", + "inlined": "", + "fns": [] + } + }, + { + "name": "readPackage node:internal/modules/package_json_reader:140:21", + "type": "JS", + "kind": "Unopt", + "func": 99, + "tm": 32000, + "source": { + "script": 65, + "start": 3950, + "end": 4020, + "positions": "C0O3968C5O3980C11O3980C17O3975C21O4018", + "inlined": "", + "fns": [] + } + }, + { + "name": "read node:internal/modules/package_json_reader:48:14", + "type": "JS", + "kind": "Unopt", + "func": 100, + "tm": 32042, + "source": { + "script": 65, + "start": 1125, + "end": 3862, + "positions": "C9O1165C16O1138C21O1144C26O1155C31O1183C36O1193C41O1193C48O1214C53O1227C58O1227C63O1241C64O1299C71O1327C74O1327C79O1299C86O1264C93O1279C97O1377C104O1434C109O1454C114O1475C119O1568C124O1592C131O1916C139O1926C148O1956C150O1974C152O2003C157O2027C162O2036C170O2034C180O2083C184O2104C196O2173C203O2184C222O2211C228O2225C234O2211C238O2209C246O2261C254O2110C259O2104C260O2524C268O2557C274O2568C281O2583C285O2575C288O2538C292O2600C297O2611C301O2631C303O2631C304O2663C305O2677C309O2765C317O2769C324O2832C332O2880C336O2871C340O2897C348O2901C355O2964C363O3012C367O3003C371O3029C379O3033C386O3115C390O3106C394O3135C402O3139C409O3221C413O3212C417O3296C425O3300C432O3357C439O3362C444O3387C451O3392C456O3436C460O3427C464O3453C470O3516C476O3516C481O3497C486O3551C489O3562C501O3612C506O3646C516O3560C522O3682C528O3729C533O3729C538O3760C543O3769C548O3769C554O3815C559O3821C564O3821C570O3846C572O3860", + "inlined": "", + "fns": [] + } + }, + { + "name": "toNamespacedPath node:path:1269:19", + "type": "JS", + "kind": "Unopt", + "func": 101, + "tm": 32084, + "source": { + "script": 34, + "start": 38744, + "end": 38804, + "positions": "C0O38788C2O38800", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._findPath node:internal/modules/cjs/loader:610:28", + "type": "JS", + "kind": "Unopt", + "func": 102, + "tm": 32375 + }, + { + "name": "isAbsolute node:path:1159:13", + "type": "JS", + "kind": "Unopt", + "func": 103, + "tm": 32459, + "source": { + "script": 34, + "start": 35583, + "end": 35729, + "positions": "C0O35596C8O35596C13O35642C19O35649C26O35667C31O35667C39O35706C41O35702C44O35725", + "inlined": "", + "fns": [] + } + }, + { + "name": "stat node:internal/modules/cjs/loader:185:14", + "type": "JS", + "kind": "Unopt", + "func": 104, + "tm": 32500, + "source": { + "script": 63, + "start": 5267, + "end": 5668, + "positions": "C0O5282C5O5298C10O5298C17O5328C23O5373C28O5383C33O5383C39O5402C41O5430C43O5444C44O5468C49O5468C54O5500C61O5533C66O5613C71O5623C76O5623C82O5652C84O5666", + "inlined": "", + "fns": [] + } + }, + { + "name": "tryExtensions node:internal/modules/cjs/loader:487:23", + "type": "JS", + "kind": "Unopt", + "func": 105, + "tm": 32542, + "source": { + "script": 63, + "start": 14187, + "end": 14385, + "positions": "C0O14229C2O14241C6O14234C11O14277C16O14300C19O14294C23O14277C29O14319C31O14341C33O14357C34O14250C39O14216C43O14370C44O14383", + "inlined": "", + "fns": [] + } + }, + { + "name": "tryFile node:internal/modules/cjs/loader:472:17", + "type": "JS", + "kind": "Unopt", + "func": 106, + "tm": 32542, + "source": { + "script": 63, + "start": 13680, + "end": 13900, + "positions": "C0O13717C5O13717C10O13739C11O13746C16O13755C17O13762C18O13767C26O13771C34O13813C36O13827C41O13839C46O13839C51O13860C52O13867C57O13874C61O13898", + "inlined": "", + "fns": [] + } + }, + { + "name": "toRealPath node:internal/modules/helpers:54:20", + "type": "JS", + "kind": "Unopt", + "func": 107, + "tm": 32584, + "source": { + "script": 64, + "start": 1545, + "end": 1658, + "positions": "C0O1563C5O1573C10O1586C17O1606C20O1617C28O1636C35O1573C41O1656", + "inlined": "", + "fns": [] + } + }, + { + "name": "realpathSync node:fs:2611:22", + "type": "JS", + "kind": "Unopt", + "func": 108, + "tm": 32792 + }, + { + "name": "getOptions node:internal/fs/utils:323:20", + "type": "JS", + "kind": "Unopt", + "func": 109, + "tm": 35792, + "source": { + "script": 60, + "start": 7457, + "end": 8064, + "positions": "C9O7484C16O7502C27O7562C29O7584C30O7592C36O7631C41O7675C43O7699C47O7714C54O7749C60O7788C78O7794C83O7788C84O7881C91O7890C96O7908C99O7931C104O7908C108O7957C114O7985C119O8013C127O7985C132O8047C134O8062", + "inlined": "", + "fns": [] + } + }, + { + "name": "assertEncoding node:internal/fs/utils:158:24", + "type": "JS", + "kind": "Unopt", + "func": 110, + "tm": 36750, + "source": { + "script": 60, + "start": 3655, + "end": 3832, + "positions": "C0O3670C6O3687C9O3694C14O3694C21O3737C24O3764C40O3770C45O3764C47O3831", + "inlined": "", + "fns": [] + } + }, + { + "name": "toPathIfFileURL node:internal/url:1479:25", + "type": "JS", + "kind": "Unopt", + "func": 111, + "tm": 36834, + "source": { + "script": 39, + "start": 42746, + "end": 42859, + "positions": "C0O42766C3O42771C9O42797C11O42818C12O42821C15O42828C19O42857", + "inlined": "", + "fns": [] + } + }, + { + "name": "isURL node:internal/url:755:15", + "type": "JS", + "kind": "Unopt", + "func": 112, + "tm": 38375, + "source": { + "script": 39, + "start": 21285, + "end": 21396, + "positions": "C0O21296C12O21315C21O21330C27O21347C34O21374C40O21303C44O21394", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/fs/utils:697:38", + "type": "JS", + "kind": "Unopt", + "func": 113, + "tm": 38417, + "source": { + "script": 60, + "start": 18901, + "end": 19171, + "positions": "C14O18934C22O18967C25O18967C31O18993C36O19024C49O18999C54O18993C55O19089C68O19089C74O19126C76O19155C78O19155C80O19170", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/fs/utils:366:35", + "type": "JS", + "kind": "Unopt", + "func": 114, + "tm": 38417, + "source": { + "script": 60, + "start": 8792, + "end": 9388, + "positions": "C16O8856C21O8909C26O8909C31O9003C37O9026C41O9054C45O9071C51O9071C60O9122C64O9143C69O9143C76O9188C77O9195C78O9215C94O9215C100O9336C104O9358C106O9358C107O9375C109O9386", + "inlined": "", + "fns": [] + } + }, + { + "name": "isUint8Array node:internal/util/types:13:22", + "type": "JS", + "kind": "Unopt", + "func": 115, + "tm": 38459, + "source": { + "script": 18, + "start": 257, + "end": 342, + "positions": "C0O269C5O276C12O323C15O340", + "inlined": "", + "fns": [] + } + }, + { + "name": "splitRoot node:fs:2567:33", + "type": "JS", + "kind": "Unopt", + "func": 116, + "tm": 38584, + "source": { + "script": 55, + "start": 67653, + "end": 67845, + "positions": "C0O67678C2O67689C6O67683C11O67710C16O67714C24O67752C26O67748C31O67780C44O67787C49O67819C50O67699C55O67665C59O67830C61O67841", + "inlined": "", + "fns": [] + } + }, + { + "name": "nextPart node:fs:2600:31", + "type": "JS", + "kind": "Unopt", + "func": 117, + "tm": 38625, + "source": { + "script": 55, + "start": 68560, + "end": 68618, + "positions": "C0O68573C14O68580C19O68614", + "inlined": "", + "fns": [] + } + }, + { + "name": "handleErrorFromBinding node:internal/fs/utils:349:32", + "type": "JS", + "kind": "Unopt", + "func": 118, + "tm": 38667, + "source": { + "script": 60, + "start": 8153, + "end": 8651, + "positions": "C0O8171C6O8234C11O8234C16O8256C24O8256C29O8313C31O8313C32O8338C38O8566C43O8593C51O8566C56O8639C60O8629C62O8650", + "inlined": "", + "fns": [] + } + }, + { + "name": "isFileType node:fs:206:20", + "type": "JS", + "kind": "Unopt", + "func": 119, + "tm": 38667, + "source": { + "script": 55, + "start": 5086, + "end": 5327, + "positions": "C0O5220C2O5225C6O5232C10O5266C15O5273C20O5289C22O5304C24O5302C30O5312C33O5325", + "inlined": "", + "fns": [] + } + }, + { + "name": "encodeRealpathResult node:fs:2576:30", + "type": "JS", + "kind": "Unopt", + "func": 120, + "tm": 38750, + "source": { + "script": 55, + "start": 67879, + "end": 68137, + "positions": "C0O67901C4O67926C10O67946C17O67955C22O67971C24O67985C25O68005C30O68012C35O68012C41O68040C48O68049C53O68069C55O68085C56O68108C61O68125C66O68108C71O68135", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module.load node:internal/modules/cjs/loader:1194:33", + "type": "JS", + "kind": "Unopt", + "func": 121, + "tm": 38834, + "source": { + "script": 63, + "start": 38021, + "end": 38862, + "positions": "C0O38036C8O38082C16O38036C21O38090C26O38103C32O38090C36O38114C38O38128C42O38142C45O38162C52O38179C55O38184C60O38184C66O38162C71O38153C75O38225C78O38225C83O38302C91O38306C101O38359C106O38370C112O38386C124O38392C129O38386C130O38436C133O38443C140O38454C144O38465C150O38485C151O38497C155O38531C160O38531C164O38643C169O38678C174O38689C186O38729C191O38736C196O38736C203O38750C205O38748C210O38787C215O38796C220O38796C227O38828C232O38837C237O38837C244O38861", + "inlined": "", + "fns": [] + } + }, + { + "name": "findLongestRegisteredExtension node:internal/modules/cjs/loader:502:40", + "type": "JS", + "kind": "Unopt", + "func": 122, + "tm": 38875, + "source": { + "script": 63, + "start": 14608, + "end": 15045, + "positions": "C0O14636C5O14641C10O14641C16O14667C18O14691C20O14717C22O14785C36O14738C44O14785C49O14799C51O14818C55O14827C56O14837C61O14846C63O14895C68O14914C74O14953C77O14964C84O14975C89O14997C91O15021C92O14722C96O15030C98O15043", + "inlined": "", + "fns": [] + } + }, + { + "name": "basename node:path:1309:11", + "type": "JS", + "kind": "Unopt", + "func": 123, + "tm": 38917, + "source": { + "script": 34, + "start": 39650, + "end": 42069, + "positions": "C0O39671C4O39703C12O39703C17O39738C25O39738C30O39785C32O39802C35O39829C37O39840C41O39875C47O39882C52O39896C57O39911C61O39903C66O39927C68O39938C73O39956C75O39966C76O39993C80O40000C84O40034C87O40062C91O40069C95O40076C96O40076C101O40110C106O40110C112O40154C114O40167C116O40163C121O40337C125O40370C127O40380C131O40397C135O40443C137O40464C142O40630C144O40664C146O40685C150O40712C151O40723C156O40794C158O40807C161O40807C166O40803C171O40866C178O40879C183O41015C190O41178C193O41205C198O40084C203O40044C207O41280C209O41290C214O41307C221O41342C223O41350C228O41377C233O41391C247O41398C252O41437C253O41466C257O41473C261O41480C262O41480C267O41499C272O41503C280O41542C282O41538C287O41706C291O41737C293O41747C297O41762C301O41792C303O41800C308O41920C310O41950C312O41958C316O41488C321O41448C325O41982C327O41990C332O42004C334O42014C335O42019C349O42026C354O42065", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._extensions..js node:internal/modules/cjs/loader:1389:37", + "type": "JS", + "kind": "Unopt", + "func": 124, + "tm": 39000, + "source": { + "script": 63, + "start": 44948, + "end": 46869, + "positions": "C0O45047C5O45061C10O45061C16O45080C18O45091C25O45101C34O45134C39O45146C40O45160C46O45188C51O45201C60O45201C67O45239C76O45243C83O45303C88O45321C93O45321C105O45441C112O45445C122O45452C127O45600C132O45618C137O45618C143O45656C146O45662C154O45704C159O45709C164O45721C174O45709C181O45766C186O45766C192O45825C211O45825C217O45996C220O46007C227O46013C232O46041C237O46079C243O46097C252O46097C262O46092C265O46210C269O46256C276O46290C279O46315C287O46322C291O46364C301O46322C308O46290C322O46256C329O46392C333O46449C344O46449C357O46418C364O46427C368O46512C374O46524C376O46559C385O46559C393O46605C396O46599C400O46637C412O46654C425O46663C438O46690C447O46721C452O46690C468O46744C473O46744C478O46809C480O46809C481O46839C486O46839C493O46868", + "inlined": "", + "fns": [] + } + }, + { + "name": "readFileSync node:fs:446:22", + "type": "JS", + "kind": "Unopt", + "func": 125, + "tm": 39125, + "source": { + "script": 55, + "start": 11263, + "end": 12881, + "positions": "C0O11283C5O11304C10O11293C17O11344C24O11353C29O11375C36O11384C41O11403C46O11408C52O11431C57O11449C64O11466C67O11466C72O11449C79O11501C84O11516C91O11535C94O11557C99O11535C104O11516C110O11564C111O11589C116O11589C121O11643C129O11661C132O11664C137O11687C150O11664C156O11718C159O11718C165O11760C170O11778C173O11760C182O11794C189O11815C191O11824C193O11870C195O11915C196O11924C201O11937C206O11966C218O11975C224O12023C226O12037C227O12046C232O12070C237O12126C253O12082C259O12140C261O12147C268O12187C269O12181C276O12194C281O12059C287O12318C292O12334C302O12334C308O12359C327O12371C333O12421C334O12435C339O12452C344O12487C351O12487C358O12452C363O12523C365O12530C372O12564C373O12564C378O12218C382O12579C386O12598C391O12601C396O12601C401O12619C402O12628C407O12690C412O12706C417O12706C426O12737C428O12745C433O12775C440O12775C447O12809C453O12835C458O12852C463O12835C469O12865C471O12879", + "inlined": "", + "fns": [] + } + }, + { + "name": "isEncoding node:buffer:569:40", + "type": "JS", + "kind": "Unopt", + "func": 126, + "tm": 39250, + "source": { + "script": 24, + "start": 15940, + "end": 16072, + "positions": "C0O15955C6O16003C12O16010C20O16028C23O16028C28O16056C29O16070", + "inlined": "", + "fns": [] + } + }, + { + "name": "normalizeEncoding node:internal/util:212:27", + "type": "JS", + "kind": "Unopt", + "func": 127, + "tm": 40709, + "source": { + "script": 16, + "start": 5641, + "end": 5746, + "positions": "C0O5651C7O5674C14O5692C19O5705C21O5719C22O5722C25O5729C29O5744", + "inlined": "", + "fns": [] + } + }, + { + "name": "isInt32 node:internal/validators:43:17", + "type": "JS", + "kind": "Unopt", + "func": 128, + "tm": 40750, + "source": { + "script": 15, + "start": 851, + "end": 894, + "positions": "C0O863C2O887C5O876C8O892", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/fs/utils:727:42", + "type": "JS", + "kind": "Unopt", + "func": 129, + "tm": 40750, + "source": { + "script": 60, + "start": 19896, + "end": 20054, + "positions": "C14O19951C19O19951C24O19985C29O19985C34O20017C37O20024C41O20052", + "inlined": "", + "fns": [] + } + }, + { + "name": "possiblyTransformPath node:internal/fs/utils:715:31", + "type": "JS", + "kind": "Unopt", + "func": 130, + "tm": 40792, + "source": { + "script": 60, + "start": 19572, + "end": 19853, + "positions": "C0O19583C5O19598C10O19598C16O19617C22O19655C27O19662C31O19680C32O19691C39O19698C42O19698C47O19691C51O19723C56O19728C62O19750C67O19757C73O19779C80O19797C85O19809C88O19809C93O19797C98O19786C102O19832C103O19839C105O19851", + "inlined": "", + "fns": [] + } + }, + { + "name": "stringToFlags node:internal/fs/utils:584:23", + "type": "JS", + "kind": "Unopt", + "func": 131, + "tm": 40834, + "source": { + "script": 60, + "start": 15805, + "end": 17039, + "positions": "C14O15833C20O15870C25O15870C30O15902C32O15915C33O15923C38O15948C42O15964C43O15972C202O16004C206O16020C207O16070C214O16088C216O16086C219O16095C220O16112C224O16126C225O16178C232O16194C234O16192C237O16201C238O16218C245O16235C247O16233C253O16245C255O16243C258O16254C259O16304C266O16321C268O16319C274O16331C276O16329C282O16342C284O16340C287O16349C288O16367C295O16384C297O16382C303O16394C305O16392C308O16401C309O16451C316O16468C318O16466C324O16478C326O16476C332O16487C334O16485C337O16494C338O16511C345O16529C347O16527C353O16539C355O16537C358O16548C359O16598C366O16616C368O16614C374O16626C376O16624C382O16637C384O16635C387O16644C388O16694C395O16712C397O16710C403O16722C405O16720C411O16733C413O16731C416O16740C417O16758C424O16776C426O16774C432O16786C434O16784C437O16793C438O16843C445O16861C447O16859C453O16871C455O16869C461O16880C463O16878C466O16887C467O16937C474O16955C476O16953C482O16965C484O16963C490O16974C492O16972C495O16981C496O16989C509O16995C514O16989", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._compile node:internal/modules/cjs/loader:1330:37", + "type": "JS", + "kind": "Unopt", + "func": 132, + "tm": 41084, + "source": { + "script": 63, + "start": 42944, + "end": 44762, + "positions": "C0O42972C2O42989C4O43019C9O43019C15O43027C23O43041C25O43061C30O43073C35O43123C40O43123C46O43168C51O43168C57O43236C69O43236C75O43297C77O43305C85O43309C94O43352C101O43373C107O43467C110O43479C117O43483C125O43514C128O43536C136O43561C143O43565C152O43536C160O43527C170O43758C177O43765C182O43778C188O43778C193O43765C198O43758C204O43842C209O43855C215O43922C223O43943C229O43974C231O43970C236O43996C240O44011C246O44025C252O44044C257O44072C262O44122C267O44127C272O44127C278O44164C283O44164C289O44208C291O44239C296O44268C297O44294C300O44302C306O44319C311O44328C316O44340C324O44338C330O44359C334O44387C355O44396C363O44532C368O44571C377O44609C386O44618C395O44627C404O44635C413O44645C423O44541C429O44662C433O44688C439O44698C445O44715C450O44724C454O44734C460O44746C462O44760", + "inlined": "", + "fns": [] + } + }, + { + "name": "wrapSafe node:internal/modules/cjs/loader:1257:18", + "type": "JS", + "kind": "Unopt", + "func": 133, + "tm": 41125, + "source": { + "script": 63, + "start": 40039, + "end": 42615, + "positions": "C0O40039C14O40121C26O40135C31O40121C36O40405C44O40440C49O40447C54O40447C60O40481C89O40481C95O41013C101O41035C115O41105C126O41035C131O41131C145O41138C150O41182C151O41205C159O41295C196O41295C202O42014C206O42046C224O42086C229O42108C234O42109C240O42126C245O42134C253O42134C258O42253C264O42275C278O42345C289O42275C294O42385C298O42394C310O42417C315O42429C322O42440C327O42498C335O42498C340O42479C345O42549C356O42549C361O42599C363O42599", + "inlined": "", + "fns": [] + } + }, + { + "name": "internalCompileFunction node:internal/vm:73:33", + "type": "JS", + "kind": "Unopt", + "func": 134, + "tm": 41209, + "source": { + "script": 36, + "start": 2177, + "end": 3028, + "positions": "C0O2366C35O2366C41O2568C45O2604C50O2641C54O2632C58O2679C64O2704C69O2733C73O2724C77O2770C85O2817C90O2854C94O2845C98O2881C102O2930C105O2969C110O2930C115O3012C117O3026", + "inlined": "", + "fns": [] + } + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", + "type": "JS", + "kind": "Unopt", + "func": 135, + "tm": 41375, + "source": { + "script": 81, + "start": 0, + "end": 119, + "positions": "C0O0C4O119", + "inlined": "", + "fns": [] + } + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", + "type": "JS", + "kind": "Unopt", + "func": 136, + "tm": 41417, + "source": { + "script": 81, + "start": 0, + "end": 119, + "positions": "C0O16C3O16C8O44C21O44C28O118", + "inlined": "", + "fns": [] + } + }, + { + "name": "registerImportModuleDynamically node:internal/vm:63:41", + "type": "JS", + "kind": "Unopt", + "func": 137, + "tm": 41459, + "source": { + "script": 36, + "start": 1818, + "end": 2143, + "positions": "C0O1898C6O1898C11O1866C16O1958C22O1958C27O1939C32O2014C37O2082C45O1999C51O2142", + "inlined": "", + "fns": [] + } + }, + { + "name": "importModuleDynamicallyWrap node:internal/vm/module:429:37", + "type": "JS", + "kind": "Unopt", + "func": 138, + "tm": 41500, + "source": { + "script": 68, + "start": 11681, + "end": 12124, + "positions": "C0O11681C13O11750C18O12122", + "inlined": "", + "fns": [] + } + }, + { + "name": "registerModule node:internal/modules/esm/utils:135:24", + "type": "JS", + "kind": "Unopt", + "func": 139, + "tm": 41959, + "source": { + "script": 66, + "start": 4020, + "end": 4540, + "positions": "C0O4062C2O4071C4O4070C8O4102C10O4119C12O4115C19O4170C21O4166C26O4404C27O4411C28O4455C41O4481C45O4497C50O4514C55O4514C62O4539", + "inlined": "", + "fns": [] + } + }, + { + "name": "makeRequireFunction node:internal/modules/helpers:127:29", + "type": "JS", + "kind": "Unopt", + "func": 140, + "tm": 42000, + "source": { + "script": 64, + "start": 3790, + "end": 6294, + "positions": "C0O3790C22O3849C27O3849C30O3849C32O3865C37O3873C46O3907C64O3913C69O3907C70O4005C72O4016C92O4048C97O4052C108O4068C112O4048C114O4095C119O4095C122O4095C124O4127C130O4136C136O4164C145O5314C150O5800C152O5816C156O6067C158O6081C162O6093C177O6133C185O6093C190O6199C193O6227C197O6218C201O6243C204O6266C208O6257C212O6277C214O6292", + "inlined": "", + "fns": [] + } + }, + { + "name": "lazyModule node:internal/modules/helpers:110:20", + "type": "JS", + "kind": "Unopt", + "func": 141, + "tm": 42042, + "source": { + "script": 64, + "start": 3079, + "end": 3173, + "positions": "C0O3086C12O3107C17O3145C24O3094C30O3156C34O3171", + "inlined": "", + "fns": [] + } + }, + { + "name": "require node:internal/modules/helpers:174:31", + "type": "JS", + "kind": "Unopt", + "func": 142, + "tm": 42084, + "source": { + "script": 64, + "start": 5340, + "end": 5464, + "positions": "C0O5433C3O5444C8O5444C13O5458", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module.require node:internal/modules/cjs/loader:1227:36", + "type": "JS", + "kind": "Unopt", + "func": 143, + "tm": 42084, + "source": { + "script": 63, + "start": 39157, + "end": 39448, + "positions": "C0O39166C8O39166C13O39194C15O39201C20O39215C36O39221C41O39215C42O39330C51O39342C60O39358C63O39372C76O39372C93O39427C102O39439C126O39447", + "inlined": "", + "fns": [] + } + }, + { + "name": "loadBuiltinModule node:internal/modules/helpers:93:27", + "type": "JS", + "kind": "Unopt", + "func": 144, + "tm": 42125, + "source": { + "script": 64, + "start": 2613, + "end": 2967, + "positions": "C0O2631C5O2650C10O2650C17O2682C18O2689C19O2777C24O2791C29O2795C34O2795C40O2806C48O2806C53O2926C58O2926C62O2954C64O2965", + "inlined": "", + "fns": [] + } + }, + { + "name": "canBeRequiredByUsers node:internal/bootstrap/realm:284:30", + "type": "JS", + "kind": "Unopt", + "func": 145, + "tm": 42125, + "source": { + "script": 9, + "start": 9060, + "end": 9115, + "positions": "C0O9071C7O9103C12O9103C17O9111", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/helpers:37:66", + "type": "JS", + "kind": "Unopt", + "func": 146, + "tm": 42167, + "source": { + "script": 64, + "start": 1032, + "end": 1057, + "positions": "C0O1044C2O1050C9O1056", + "inlined": "", + "fns": [] + } + }, + { + "name": "compileForPublicLoader node:internal/bootstrap/realm:322:25", + "type": "JS", + "kind": "Unopt", + "func": 147, + "tm": 42167, + "source": { + "script": 9, + "start": 10128, + "end": 10818, + "positions": "C0O10137C5O10156C10O10182C15O10156C22O10309C32O10352C49O10315C54O10309C55O10389C60O10389C64O10431C70O10620C77O10651C85O10620C91O10675C96O10693C106O10709C109O10725C114O10709C118O10691C122O10750C127O10750C131O10775C136O10775C140O10806C144O10814", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:cluster:1:1", + "type": "JS", + "kind": "Unopt", + "func": 148, + "tm": 42250, + "source": { + "script": 82, + "start": 0, + "end": 1376, + "positions": "C0O0C4O1376", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:cluster:1:1", + "type": "JS", + "kind": "Unopt", + "func": 149, + "tm": 42292, + "source": { + "script": 82, + "start": 0, + "end": 1376, + "positions": "C0O1190C5O1266C13O1245C27O1312C32O1357C37O1329C41O1327C46O1375", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/primary:1:1", + "type": "JS", + "kind": "Unopt", + "func": 150, + "tm": 42500, + "source": { + "script": 83, + "start": 0, + "end": 10127, + "positions": "C0O0C4O10127", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/primary:1:1", + "type": "JS", + "kind": "Unopt", + "func": 151, + "tm": 42834 + }, + { + "name": " node:child_process:1:1", + "type": "JS", + "kind": "Unopt", + "func": 152, + "tm": 43209, + "source": { + "script": 84, + "start": 0, + "end": 27198, + "positions": "C0O0C4O27198", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:child_process:1:1", + "type": "JS", + "kind": "Unopt", + "func": 153, + "tm": 44167, + "source": { + "script": 84, + "start": 0, + "end": 27198, + "positions": "C0O0C287O1159C293O1175C299O1199C305O1225C311O1247C317O1276C323O1298C329O1321C335O1343C341O1367C347O1392C353O1419C359O1438C365O1454C370O1478C376O1511C382O1534C388O1545C394O1572C400O1596C406O1626C412O1771C418O1771C423O1669C429O1693C435O1718C441O1740C447O1756C452O1827C458O1827C463O1805C469O1871C475O1871C480O1904C493O1905C499O1871C501O1989C507O1989C512O1978C518O2051C521O2051C526O2016C532O2033C538O2149C544O2149C549O2092C555O2113C560O2127C566O2187C572O2212C578O2246C584O2283C590O2307C596O2378C602O2378C607O2349C613O2363C619O2426C625O2426C630O2405C636O2594C642O2594C647O2466C653O2477C659O2500C665O2517C671O2536C677O2556C683O2574C689O2648C695O2648C699O2648C701O2766C704O2693C710O2710C716O2726C722O2742C728O2801C734O2801C736O2829C739O2837C746O2846C749O2829C751O2863C752O2863C754O6932C759O7336C769O7395C780O7299C785O13751C795O13810C806O13710C811O27068C821O27089C827O27103C833O27119C839O27127C845O27139C851O27155C857O27167C863O27175C869O27184C875O27083C880O27197", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/child_process:1:1", + "type": "JS", + "kind": "Unopt", + "func": 154, + "tm": 44667, + "source": { + "script": 85, + "start": 0, + "end": 31777, + "positions": "C0O0C4O31777", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/child_process:1:1", + "type": "JS", + "kind": "Unopt", + "func": 155, + "tm": 45750 + }, + { + "name": " node:internal/child_process:536:1", + "type": "JS", + "kind": "Unopt", + "func": 156, + "tm": 45792, + "source": { + "script": 85, + "start": 13890, + "end": 14887, + "positions": "C3O13940C12O13956C21O13981C28O14887", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:net:1:1", + "type": "JS", + "kind": "Unopt", + "func": 157, + "tm": 46542, + "source": { + "script": 86, + "start": 0, + "end": 65921, + "positions": "C0O0C4O65921", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:net:1:1", + "type": "JS", + "kind": "Unopt", + "func": 158, + "tm": 48792 + }, + { + "name": " node:stream:1:1", + "type": "JS", + "kind": "Unopt", + "func": 159, + "tm": 49125, + "source": { + "script": 87, + "start": 0, + "end": 4792, + "positions": "C0O0C4O4792", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:stream:1:1", + "type": "JS", + "kind": "Unopt", + "func": 160, + "tm": 49334 + }, + { + "name": " node:internal/streams/operators:1:1", + "type": "JS", + "kind": "Unopt", + "func": 161, + "tm": 49542, + "source": { + "script": 88, + "start": 0, + "end": 10772, + "positions": "C0O0C4O10772", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/operators:1:1", + "type": "JS", + "kind": "Unopt", + "func": 162, + "tm": 49917, + "source": { + "script": 88, + "start": 0, + "end": 10772, + "positions": "C0O0C163O56C166O56C171O23C177O40C183O234C186O234C191O112C196O118C202O145C208O171C213O193C219O218C225O334C228O334C233O272C239O295C245O314C251O415C254O415C259O374C265O388C271O470C274O470C279O457C285O535C288O535C292O535C294O612C297O612C302O582C308O695C311O695C316O666C322O678C328O752C331O752C336O738C341O789C347O811C353O822C359O835C365O845C371O860C377O871C383O888C389O906C395O930C400O971C403O971C407O971C409O1002C412O1002C416O1002C418O6699C439O6659C441O10462C455O10517C466O10610C472O10618C478O10628C484O10639C490O10646C496O10654C502O10495C506O10674C518O10714C524O10723C530O10734C536O10744C542O10755C548O10763C554O10708C559O10771", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/abort_controller:1:1", + "type": "JS", + "kind": "Unopt", + "func": 163, + "tm": 50167, + "source": { + "script": 89, + "start": 0, + "end": 12472, + "positions": "C0O0C4O12472", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/abort_controller:1:1", + "type": "JS", + "kind": "Unopt", + "func": 164, + "tm": 50584 + }, + { + "name": " node:internal/abort_controller:378:1", + "type": "JS", + "kind": "Unopt", + "func": 165, + "tm": 50625, + "source": { + "script": 89, + "start": 10186, + "end": 10842, + "positions": "C4O10212C10O10842", + "inlined": "", + "fns": [] + } + }, + { + "name": "SafeFinalizationRegistry node:internal/per_context/primordials:440:16", + "type": "JS", + "kind": "Unopt", + "func": 166, + "tm": 50709, + "source": { + "script": 6, + "start": 12756, + "end": 12801, + "positions": "C3O12776C27O12776C42O12800", + "inlined": "", + "fns": [] + } + }, + { + "name": "defineEventHandler node:internal/event_target:1104:28", + "type": "JS", + "kind": "Unopt", + "func": 167, + "tm": 50792, + "source": { + "script": 47, + "start": 29162, + "end": 30601, + "positions": "C0O29162C24O29186C36O29280C41O29285C46O29434C56O29455C66O29509C77O29434C82O30371C92O30392C102O30446C113O30371C118O30467C125O30497C132O30534C138O30543C148O30467C154O30600", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/end-of-stream:1:1", + "type": "JS", + "kind": "Unopt", + "func": 168, + "tm": 52042, + "source": { + "script": 90, + "start": 0, + "end": 8360, + "positions": "C0O0C4O8360", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/end-of-stream:1:1", + "type": "JS", + "kind": "Unopt", + "func": 169, + "tm": 52334, + "source": { + "script": 90, + "start": 0, + "end": 8360, + "positions": "C0O0C120O172C126O172C131O147C137O161C142O210C148O234C154O309C160O309C165O283C171O299C177O427C183O427C188O345C194O368C200O388C206O406C212O470C218O481C224O505C230O833C236O833C241O548C247O560C253O574C259O598C265O618C271O640C277O661C283O675C289O699C295O719C301O741C307O762C313O793C319O811C325O872C326O872C328O1000C332O1000C334O8302C336O8317C340O8331C347O8348C352O8359", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/utils:1:1", + "type": "JS", + "kind": "Unopt", + "func": 170, + "tm": 52500, + "source": { + "script": 91, + "start": 0, + "end": 8416, + "positions": "C0O0C4O8416", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/utils:1:1", + "type": "JS", + "kind": "Unopt", + "func": 171, + "tm": 52792, + "source": { + "script": 91, + "start": 0, + "end": 8416, + "positions": "C0O0C169O25C175O48C181O66C186O346C190O346C194O346C196O403C200O403C204O403C206O459C210O459C214O459C216O516C220O516C224O516C226O574C230O574C234O574C236O638C240O638C245O718C249O718C254O7817C262O7838C268O7853C274O7869C280O7884C286O7900C292O7913C298O7927C304O7941C310O7956C316O7976C322O8004C328O8019C334O8031C340O8053C346O8067C352O8081C358O8105C364O8125C370O8144C376O8166C382O8187C388O8203C394O8218C400O8232C406O8256C412O8276C418O8295C424O8317C430O8338C436O8357C442O8377C448O8394C454O7832C459O8415", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/compose:1:1", + "type": "JS", + "kind": "Unopt", + "func": 172, + "tm": 52959, + "source": { + "script": 92, + "start": 0, + "end": 5451, + "positions": "C0O0C4O5451", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/compose:1:1", + "type": "JS", + "kind": "Unopt", + "func": 173, + "tm": 53167, + "source": { + "script": 92, + "start": 0, + "end": 5451, + "positions": "C0O0C47O36C50O36C55O23C61O89C64O89C68O89C70O147C73O147C78O133C84O316C87O316C92O194C98O210C104O224C110O238C116O253C122O274C128O294C134O442C137O442C142O361C148O382C153O388C159O415C165O482C168O482C172O482C174O526C178O541C183O5450", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/pipeline:1:1", + "type": "JS", + "kind": "Unopt", + "func": 174, + "tm": 53334, + "source": { + "script": 93, + "start": 0, + "end": 12326, + "positions": "C0O0C4O12326", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/pipeline:1:1", + "type": "JS", + "kind": "Unopt", + "func": 175, + "tm": 53792, + "source": { + "script": 93, + "start": 0, + "end": 12326, + "positions": "C0O0C153O138C159O154C165O165C171O188C177O233C183O233C187O233C189O293C195O293C200O284C206O339C212O339C216O339C218O391C224O391C228O391C230O627C236O627C241O437C247O466C252O472C258O498C264O528C270O550C276O576C282O611C288O711C294O711C299O666C305O686C311O902C317O902C322O754C328O768C334O782C340O806C346O822C352O843C358O858C364O878C370O965C376O965C381O945C387O1008C388O1008C390O1025C391O1025C393O1039C394O1039C396O12281C403O12300C409O12314C415O12296C420O12325", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/destroy:1:1", + "type": "JS", + "kind": "Unopt", + "func": 176, + "tm": 53917, + "source": { + "script": 94, + "start": 0, + "end": 6826, + "positions": "C0O0C4O6826", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/destroy:1:1", + "type": "JS", + "kind": "Unopt", + "func": 177, + "tm": 54209, + "source": { + "script": 94, + "start": 0, + "end": 6826, + "positions": "C0O0C122O106C125O106C130O25C136O54C141O60C147O90C153O144C158O245C161O245C166O179C172O195C178O210C184O224C190O298C193O298C197O298C199O337C202O337C206O337C208O6736C215O6757C221O6770C227O6783C233O6794C239O6807C245O6751C250O6825", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/duplex:1:1", + "type": "JS", + "kind": "Unopt", + "func": 178, + "tm": 54334, + "source": { + "script": 95, + "start": 0, + "end": 4938, + "positions": "C0O0C4O4938", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/duplex:1:1", + "type": "JS", + "kind": "Unopt", + "func": 179, + "tm": 54542, + "source": { + "script": 95, + "start": 0, + "end": 4938, + "positions": "C0O0C33O1383C38O1409C43O1443C48O1457C53O1497C55O1512C59O1540C65O1540C69O1540C71O1595C77O1595C81O1595C83O1634C86O1662C94O1682C99O1634C104O1694C110O1694C115O1752C118O1772C123O1752C128O1838C130O1850C134O1843C139O1884C141O1888C145O1897C148O1909C155O1918C160O1934C163O1941C171O1970C178O1979C181O1959C185O1859C190O1825C194O2665C197O2695C207O2724C215O2786C224O2746C243O2841C251O2903C260O2863C279O2968C287O3030C296O2990C315O3088C323O3150C332O3110C351O3204C359O3266C368O3226C387O3322C395O3384C404O3344C423O3440C431O3502C440O3462C459O3555C467O3617C476O3577C495O3673C503O3735C512O3695C531O3784C536O3811C544O4029C558O2665C563O4306C564O4306C566O4530C573O4545C577O4668C584O4681C588O4779C589O4779C591O4791C598O4803C603O4937", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/readable:1:1", + "type": "JS", + "kind": "Unopt", + "func": 180, + "tm": 55084, + "source": { + "script": 96, + "start": 0, + "end": 49050, + "positions": "C0O0C4O49050", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/readable:1:1", + "type": "JS", + "kind": "Unopt", + "func": 181, + "tm": 56834 + }, + { + "name": " node:internal/streams/legacy:1:1", + "type": "JS", + "kind": "Unopt", + "func": 182, + "tm": 57167, + "source": { + "script": 97, + "start": 0, + "end": 2934, + "positions": "C0O0C4O2934", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/legacy:1:1", + "type": "JS", + "kind": "Unopt", + "func": 183, + "tm": 57292, + "source": { + "script": 97, + "start": 0, + "end": 2934, + "positions": "C0O0C22O25C28O41C33O92C36O92C40O92C42O189C50O203C55O161C60O215C63O215C68O257C77O272C81O2888C88O2907C94O2915C100O2903C105O2933", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/add-abort-signal:1:1", + "type": "JS", + "kind": "Unopt", + "func": 184, + "tm": 57375, + "source": { + "script": 98, + "start": 0, + "end": 1704, + "positions": "C0O0C4O1704", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/add-abort-signal:1:1", + "type": "JS", + "kind": "Unopt", + "func": 185, + "tm": 57459, + "source": { + "script": 98, + "start": 0, + "end": 1704, + "positions": "C0O0C40O25C46O93C52O93C57O68C63O82C68O193C74O193C79O132C85O148C91O163C97O241C103O241C107O241C109O292C115O328C116O328C118O557C122O557C124O719C127O726C136O749C140O1065C143O1072C152O1105C157O1703", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/buffer_list:1:1", + "type": "JS", + "kind": "Unopt", + "func": 186, + "tm": 57542, + "source": { + "script": 99, + "start": 0, + "end": 4060, + "positions": "C0O0C4O4060", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/buffer_list:1:1", + "type": "JS", + "kind": "Unopt", + "func": 187, + "tm": 57709, + "source": { + "script": 99, + "start": 0, + "end": 4060, + "positions": "C0O0C20O25C26O49C31O67C37O93C43O142C46O142C51O131C57O181C60O181C65O169C71O216C120O2055C143O3869C147O3869C169O231C174O4059", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/state:1:1", + "type": "JS", + "kind": "Unopt", + "func": 188, + "tm": 57792, + "source": { + "script": 100, + "start": 0, + "end": 1332, + "positions": "C0O0C4O1332", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/state:1:1", + "type": "JS", + "kind": "Unopt", + "func": 189, + "tm": 57834, + "source": { + "script": 100, + "start": 0, + "end": 1332, + "positions": "C0O0C45O25C51O38C57O100C60O100C65O80C71O167C74O167C79O193C84O141C90O234C94O234C96O282C98O282C100O1236C107O1257C113O1277C119O1304C125O1251C130O1331", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:string_decoder:1:1", + "type": "JS", + "kind": "Unopt", + "func": 190, + "tm": 57917, + "source": { + "script": 101, + "start": 0, + "end": 5213, + "positions": "C0O0C4O5213", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:string_decoder:1:1", + "type": "JS", + "kind": "Unopt", + "func": 191, + "tm": 58125, + "source": { + "script": 101, + "start": 0, + "end": 5213, + "positions": "C0O0C70O1159C76O1180C81O1206C86O1216C92O1282C95O1282C100O1271C106O1465C109O1465C114O1311C120O1341C126O1369C132O1386C138O1404C144O1422C150O1431C156O1441C162O1450C167O1521C170O1521C174O1521C176O1627C179O1627C184O1653C189O1557C195O1581C201O1601C207O1680C213O1700C217O1686C220O1680C222O1744C225O1744C229O1744C231O2414C232O2414C234O2431C236O2448C240O2436C245O2463C250O2485C256O2490C260O2458C265O2418C269O3209C278O3225C282O3873C291O3887C295O4274C304O4289C308O4488C318O4513C323O4586C337O4818C342O4891C356O4974C361O5047C375O4451C380O5174C382O5196C387O5212", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/from:1:1", + "type": "JS", + "kind": "Unopt", + "func": 192, + "tm": 58250, + "source": { + "script": 102, + "start": 0, + "end": 2614, + "positions": "C0O0C4O2614", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/from:1:1", + "type": "JS", + "kind": "Unopt", + "func": 193, + "tm": 58375, + "source": { + "script": 102, + "start": 0, + "end": 2614, + "positions": "C0O0C32O25C38O49C44O72C50O124C53O124C58O113C64O206C67O206C72O232C77O154C83O178C89O2591C91O2606C96O2613", + "inlined": "", + "fns": [] + } + }, + { + "name": "makeBitMapDescriptor node:internal/streams/readable:120:30", + "type": "JS", + "kind": "Unopt", + "func": 194, + "tm": 58459, + "source": { + "script": 96, + "start": 3765, + "end": 3958, + "positions": "C0O3765C9O3775C14O3811C22O3861C32O3956", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/writable:1:1", + "type": "JS", + "kind": "Unopt", + "func": 195, + "tm": 58917, + "source": { + "script": 103, + "start": 0, + "end": 33751, + "positions": "C0O0C4O33751", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/writable:1:1", + "type": "JS", + "kind": "Unopt", + "func": 196, + "tm": 60084 + }, + { + "name": "makeBitMapDescriptor node:internal/streams/writable:116:30", + "type": "JS", + "kind": "Unopt", + "func": 197, + "tm": 60292, + "source": { + "script": 103, + "start": 3773, + "end": 3966, + "positions": "C0O3773C9O3783C14O3819C22O3869C32O3964", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:stream/promises:1:1", + "type": "JS", + "kind": "Unopt", + "func": 198, + "tm": 60459, + "source": { + "script": 104, + "start": 0, + "end": 917, + "positions": "C0O0C4O917", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:stream/promises:1:1", + "type": "JS", + "kind": "Unopt", + "func": 199, + "tm": 60500, + "source": { + "script": 104, + "start": 0, + "end": 917, + "positions": "C0O0C28O25C34O46C40O130C43O130C48O83C54O97C60O113C66O195C69O195C74O188C80O254C83O254C88O241C93O298C96O298C100O871C107O892C113O904C119O886C124O916", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/transform:1:1", + "type": "JS", + "kind": "Unopt", + "func": 200, + "tm": 60625, + "source": { + "script": 105, + "start": 0, + "end": 7368, + "positions": "C0O0C4O7368", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/transform:1:1", + "type": "JS", + "kind": "Unopt", + "func": 201, + "tm": 60875, + "source": { + "script": 105, + "start": 0, + "end": 7368, + "positions": "C0O0C39O3508C44O3532C49O3558C51O3573C55O3628C58O3628C63O3654C68O3596C74O3677C77O3677C81O3677C83O3742C86O3742C91O3721C97O3777C100O3808C108O3826C113O3777C118O3838C124O3838C129O3898C132O3898C136O3898C138O6278C141O6288C148O6305C152O6315C155O6325C164O6346C168O6446C171O6456C180O6473C184O7213C187O7223C196O7239C201O7367", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/passthrough:1:1", + "type": "JS", + "kind": "Unopt", + "func": 202, + "tm": 60959, + "source": { + "script": 106, + "start": 0, + "end": 1762, + "positions": "C0O0C4O1762", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/streams/passthrough:1:1", + "type": "JS", + "kind": "Unopt", + "func": 203, + "tm": 61000, + "source": { + "script": 106, + "start": 0, + "end": 1762, + "positions": "C0O0C14O1288C19O1328C21O1343C25O1377C28O1377C32O1377C34O1416C37O1449C45O1470C50O1416C55O1482C61O1482C66O1673C69O1685C78O1706C83O1761", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/stream_base_commons:1:1", + "type": "JS", + "kind": "Unopt", + "func": 204, + "tm": 61292, + "source": { + "script": 107, + "start": 0, + "end": 7041, + "positions": "C0O0C4O7041", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/stream_base_commons:1:1", + "type": "JS", + "kind": "Unopt", + "func": 205, + "tm": 61542, + "source": { + "script": 107, + "start": 0, + "end": 7041, + "positions": "C0O0C130O25C136O34C141O79C144O79C149O68C155O121C158O121C163O106C169O275C172O275C177O159C183O172C189O193C195O215C201O232C207O254C213O326C216O326C221O315C227O379C230O379C235O359C241O432C244O432C249O463C254O415C260O536C263O536C268O483C274O495C280O514C286O589C289O589C294O572C300O646C303O646C308O629C314O694C317O694C322O673C328O749C331O749C335O749C337O795C340O795C344O795C346O844C349O844C353O844C355O888C358O888C362O888C364O924C367O924C371O924C373O957C376O957C381O990C394O991C400O957C402O1054C405O1054C409O1054C411O1092C414O1092C418O1092C420O1132C423O1132C427O1132C429O6836C436O6857C442O6874C448O6890C454O6906C460O6926C466O6943C472O6959C478O6970C484O6982C490O7002C496O7013C502O7026C508O6851C513O7040", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:diagnostics_channel:1:1", + "type": "JS", + "kind": "Unopt", + "func": 206, + "tm": 61750, + "source": { + "script": 108, + "start": 0, + "end": 9791, + "positions": "C0O0C4O9791", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:diagnostics_channel:1:1", + "type": "JS", + "kind": "Unopt", + "func": 207, + "tm": 62125, + "source": { + "script": 108, + "start": 0, + "end": 9791, + "positions": "C0O0C131O25C137O45C143O70C149O92C155O116C161O144C167O168C173O192C179O203C185O227C191O245C197O262C203O278C209O289C214O380C217O380C222O343C227O349C233O440C236O440C241O418C247O510C250O510C255O481C261O564C264O564C269O546C297O759C354O734C409O2160C427O3888C503O3717C505O4516C507O4516C512O4516C514O5148C518O5148C565O5359C567O9683C574O9704C580O9715C586O9733C592O9746C598O9764C604O9779C610O9698C615O9790", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:diagnostics_channel:35:1", + "type": "JS", + "kind": "Unopt", + "func": 208, + "tm": 62167, + "source": { + "script": 108, + "start": 734, + "end": 1143, + "positions": "C0O734C14O785C28O785C39O1143", + "inlined": "", + "fns": [] + } + }, + { + "name": "WeakRefMap node:diagnostics_channel:35:1", + "type": "JS", + "kind": "Unopt", + "func": 209, + "tm": 62250, + "source": { + "script": 108, + "start": 734, + "end": 734, + "positions": "C0O734C5O734C29O734C51O734", + "inlined": "", + "fns": [] + } + }, + { + "name": "channel node:diagnostics_channel:213:17", + "type": "JS", + "kind": "Unopt", + "func": 210, + "tm": 62292, + "source": { + "script": 108, + "start": 4551, + "end": 4801, + "positions": "C0O4578C5O4587C10O4587C16O4600C18O4613C20O4628C21O4632C33O4696C51O4702C56O4696C57O4774C64O4781C69O4799", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:diagnostics_channel:45:6", + "type": "JS", + "kind": "Unopt", + "func": 211, + "tm": 62334, + "source": { + "script": 108, + "start": 980, + "end": 1025, + "positions": "C0O992C2O1005C13O1005C21O1013C26O1015C33O1021", + "inlined": "", + "fns": [] + } + }, + { + "name": "Channel node:diagnostics_channel:168:14", + "type": "JS", + "kind": "Unopt", + "func": 212, + "tm": 62334, + "source": { + "script": 108, + "start": 3746, + "end": 3876, + "positions": "C0O3759C1O3777C5O3794C6O3807C10O3824C12O3834C16O3847C23O3856C28O3856C35O3875", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:diagnostics_channel:40:6", + "type": "JS", + "kind": "Unopt", + "func": 213, + "tm": 62375, + "source": { + "script": 108, + "start": 859, + "end": 973, + "positions": "C0O878C2O883C6O895C11O895C17O921C19O934C28O947C33O943C45O934C50O969", + "inlined": "", + "fns": [] + } + }, + { + "name": "WeakReference node:internal/util:835:14", + "type": "JS", + "kind": "Unopt", + "func": 214, + "tm": 62375, + "source": { + "script": 16, + "start": 22980, + "end": 23036, + "positions": "C0O22980C14O22995C21O23012C26O23008C31O23006C36O23035", + "inlined": "", + "fns": [] + } + }, + { + "name": "SafeWeakRef node:internal/per_context/primordials:447:16", + "type": "JS", + "kind": "Unopt", + "func": 215, + "tm": 62375, + "source": { + "script": 6, + "start": 12965, + "end": 12992, + "positions": "C3O12976C27O12976C42O12991", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/perf/observe:1:1", + "type": "JS", + "kind": "Unopt", + "func": 216, + "tm": 62625, + "source": { + "script": 109, + "start": 0, + "end": 16722, + "positions": "C0O0C4O16722", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/perf/observe:1:1", + "type": "JS", + "kind": "Unopt", + "func": 217, + "tm": 63250 + }, + { + "name": " node:internal/perf/observe:243:1", + "type": "JS", + "kind": "Unopt", + "func": 218, + "tm": 63292, + "source": { + "script": 109, + "start": 5936, + "end": 9533, + "positions": "C3O5976C13O5996C20O5996C34O6013C43O6022C49O9533", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/perf/performance_entry:1:1", + "type": "JS", + "kind": "Unopt", + "func": 219, + "tm": 63459, + "source": { + "script": 110, + "start": 0, + "end": 3272, + "positions": "C0O0C4O3272", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/perf/performance_entry:1:1", + "type": "JS", + "kind": "Unopt", + "func": 220, + "tm": 63584, + "source": { + "script": 110, + "start": 0, + "end": 3272, + "positions": "C0O0C53O25C58O51C63O134C66O134C71O94C76O100C82O231C85O231C90O194C95O206C100O291C103O291C108O265C114O344C117O344C122O332C128O376C131O376C135O376C137O428C140O428C144O428C146O485C149O485C153O485C155O541C158O541C162O541C164O594C167O594C171O594C173O652C176O652C180O652C211O1595C238O750C240O2067C243O2107C255O2128C261O2162C267O2196C273O2229C279O2260C283O2067C291O2518C319O2483C321O3114C328O3135C334O3161C340O3181C346O3203C352O3227C358O3257C364O3129C369O3271", + "inlined": "", + "fns": [] + } + }, + { + "name": "protoGetter node:net:866:21", + "type": "JS", + "kind": "Unopt", + "func": 221, + "tm": 63750, + "source": { + "script": 86, + "start": 22667, + "end": 22829, + "positions": "C0O22688C8O22716C13O22727C20O22812C27O22688C33O22828", + "inlined": "", + "fns": [] + } + }, + { + "name": "protoGetter node:net:866:21", + "type": "JS", + "kind": "Sparkplug", + "func": 221, + "tm": 63792, + "source": { + "script": 86, + "start": 22667, + "end": 22829, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "Module._nodeModulePaths node:internal/modules/cjs/loader:793:37", + "type": "JS", + "kind": "Sparkplug", + "func": 78, + "tm": 63834, + "source": { + "script": 63, + "start": 24237, + "end": 25417, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "toNamespacedPath node:path:1269:19", + "type": "JS", + "kind": "Sparkplug", + "func": 101, + "tm": 63834, + "source": { + "script": 34, + "start": 38744, + "end": 38804, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "nextPart node:fs:2600:31", + "type": "JS", + "kind": "Sparkplug", + "func": 117, + "tm": 63834, + "source": { + "script": 55, + "start": 68560, + "end": 68618, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "isFileType node:fs:206:20", + "type": "JS", + "kind": "Sparkplug", + "func": 119, + "tm": 63875, + "source": { + "script": 55, + "start": 5086, + "end": 5327, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "dirname node:path:1278:10", + "type": "JS", + "kind": "Sparkplug", + "func": 73, + "tm": 63875, + "source": { + "script": 34, + "start": 38877, + "end": 39546, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "validateString node:internal/validators:160:24", + "type": "JS", + "kind": "Sparkplug", + "func": 222, + "tm": 63917, + "source": { + "script": 15, + "start": 4120, + "end": 4229, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "makeBitMapDescriptor node:internal/streams/readable:120:30", + "type": "JS", + "kind": "Sparkplug", + "func": 194, + "tm": 63917, + "source": { + "script": 96, + "start": 3765, + "end": 3958, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "makeBitMapDescriptor node:internal/streams/writable:116:30", + "type": "JS", + "kind": "Sparkplug", + "func": 197, + "tm": 63959, + "source": { + "script": 103, + "start": 3773, + "end": 3966, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "getDeprecationWarningEmitter node:internal/util:111:38", + "type": "JS", + "kind": "Sparkplug", + "func": 223, + "tm": 63959, + "source": { + "script": 16, + "start": 2733, + "end": 3345, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:dgram:1:1", + "type": "JS", + "kind": "Unopt", + "func": 224, + "tm": 64334, + "source": { + "script": 111, + "start": 0, + "end": 28253, + "positions": "C0O0C4O28253", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:dgram:1:1", + "type": "JS", + "kind": "Unopt", + "func": 225, + "tm": 65292 + }, + { + "name": " node:internal/dgram:1:1", + "type": "JS", + "kind": "Unopt", + "func": 226, + "tm": 65500, + "source": { + "script": 112, + "start": 0, + "end": 1851, + "positions": "C0O0C4O1851", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/dgram:1:1", + "type": "JS", + "kind": "Unopt", + "func": 227, + "tm": 65584, + "source": { + "script": 112, + "start": 0, + "end": 1851, + "positions": "C0O0C56O25C62O50C67O94C73O94C78O84C83O138C86O138C91O130C97O195C103O195C108O175C114O264C120O264C125O231C131O242C137O318C140O318C145O304C151O351C157O404C160O404C165O432C166O432C168O1777C175O1798C181O1814C187O1837C193O1792C198O1850", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/socket_list:1:1", + "type": "JS", + "kind": "Unopt", + "func": 228, + "tm": 65792, + "source": { + "script": 113, + "start": 0, + "end": 2709, + "positions": "C0O0C4O2709", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/socket_list:1:1", + "type": "JS", + "kind": "Unopt", + "func": 229, + "tm": 65875, + "source": { + "script": 113, + "start": 0, + "end": 2709, + "positions": "C0O0C8O57C11O57C16O83C21O23C27O113C30O113C35O218C72O1527C99O2653C106O2672C112O2688C118O2668C123O2708", + "inlined": "", + "fns": [] + } + }, + { + "name": "customPromiseExecFunction node:child_process:239:35", + "type": "JS", + "kind": "Unopt", + "func": 230, + "tm": 65959, + "source": { + "script": 84, + "start": 6932, + "end": 7296, + "positions": "C0O6932C9O6946C13O7294", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/round_robin_handle:1:1", + "type": "JS", + "kind": "Unopt", + "func": 231, + "tm": 66042, + "source": { + "script": 114, + "start": 0, + "end": 3453, + "positions": "C0O0C4O3453", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/round_robin_handle:1:1", + "type": "JS", + "kind": "Unopt", + "func": 232, + "tm": 66167, + "source": { + "script": 114, + "start": 0, + "end": 3453, + "positions": "C0O0C46O25C52O41C58O52C64O94C67O94C71O94C73O134C76O134C80O134C82O173C85O173C90O158C96O256C99O256C104O216C110O224C116O230C122O239C128O245C134O310C137O310C142O296C148O340C150O355C154O1336C163O1350C167O2001C176O2018C180O2399C189O2420C193O2862C202O2880C207O3452", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/utils:1:1", + "type": "JS", + "kind": "Unopt", + "func": 233, + "tm": 66250, + "source": { + "script": 115, + "start": 0, + "end": 1054, + "positions": "C0O0C4O1054", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/utils:1:1", + "type": "JS", + "kind": "Unopt", + "func": 234, + "tm": 66292, + "source": { + "script": 115, + "start": 0, + "end": 1054, + "positions": "C0O0C24O25C30O41C35O68C42O89C48O103C54O83C58O135C60O135C65O135C67O160C68O160C71O1053", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/shared_handle:1:1", + "type": "JS", + "kind": "Unopt", + "func": 235, + "tm": 66375, + "source": { + "script": 116, + "start": 0, + "end": 1102, + "positions": "C0O0C4O1102", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/shared_handle:1:1", + "type": "JS", + "kind": "Unopt", + "func": 236, + "tm": 66417, + "source": { + "script": 116, + "start": 0, + "end": 1102, + "positions": "C0O0C22O22C28O62C31O62C35O62C37O104C40O104C44O104C46O143C49O143C53O143C55O160C57O175C61O685C70O699C74O861C83O878C88O1101", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/worker:1:1", + "type": "JS", + "kind": "Unopt", + "func": 237, + "tm": 66459, + "source": { + "script": 117, + "start": 0, + "end": 1379, + "positions": "C0O0C4O1379", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/cluster/worker:1:1", + "type": "JS", + "kind": "Unopt", + "func": 238, + "tm": 66542, + "source": { + "script": 117, + "start": 0, + "end": 1379, + "positions": "C0O0C20O25C25O49C31O102C34O102C38O102C40O147C43O147C48O130C54O174C56O189C60O876C63O904C71O928C76O876C81O940C87O940C92O985C95O992C104O1007C108O1073C111O1080C120O1095C124O1181C127O1188C136O1205C140O1299C143O1306C152O1328C157O1378", + "inlined": "", + "fns": [] + } + }, + { + "name": "getESMFacade node:internal/bootstrap/realm:340:15", + "type": "JS", + "kind": "Unopt", + "func": 239, + "tm": 66625, + "source": { + "script": 9, + "start": 10834, + "end": 11584, + "positions": "C0O10834C8O10852C14O10872C18O10879C19O10907C29O10907C34O10892C39O11025C46O11057C53O11025C58O11091C61O11104C70O11130C72O11130C74O11160C81O11185C86O11160C91O11202C101O11202C106O11250C108O11302C121O11264C126O11262C130O11498C135O11505C140O11505C144O11529C149O11536C159O11536C165O11573C169O11580", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/bootstrap/realm:351:15", + "type": "JS", + "kind": "Unopt", + "func": 240, + "tm": 66667, + "source": { + "script": 9, + "start": 11329, + "end": 11424, + "positions": "C0O11342C5O11350C10O11350C14O11378C24O11399C27O11407C32O11378C39O11423", + "inlined": "", + "fns": [] + } + }, + { + "name": "syncExports node:internal/bootstrap/realm:365:14", + "type": "JS", + "kind": "Unopt", + "func": 241, + "tm": 66667, + "source": { + "script": 9, + "start": 11891, + "end": 12224, + "positions": "C0O11919C5O11944C11O11973C13O11986C17O11978C22O12028C24O12033C28O12046C30O12061C35O12076C37O12099C42O12106C51O12158C54O12170C59O12196C67O12158C73O12106C79O11995C84O11960C89O12223", + "inlined": "", + "fns": [] + } + }, + { + "name": "getOwn node:internal/bootstrap/realm:202:16", + "type": "JS", + "kind": "Unopt", + "func": 242, + "tm": 66709, + "source": { + "script": 9, + "start": 6377, + "end": 6531, + "positions": "C0O6413C5O6420C14O6474C26O6474C34O6529", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/cjs/loader:122:3", + "type": "JS", + "kind": "Unopt", + "func": 243, + "tm": 66750, + "source": { + "script": 63, + "start": 3697, + "end": 3751, + "positions": "C0O3741C6O3703C11O3741C15O3751", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/process/esm_loader:1:1", + "type": "JS", + "kind": "Unopt", + "func": 244, + "tm": 66792, + "source": { + "script": 118, + "start": 0, + "end": 1190, + "positions": "C0O0C4O1190", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/process/esm_loader:1:1", + "type": "JS", + "kind": "Unopt", + "func": 245, + "tm": 66875, + "source": { + "script": 118, + "start": 0, + "end": 1190, + "positions": "C0O0C34O25C40O100C43O100C48O77C54O167C57O167C62O148C68O247C71O247C76O206C82O322C85O322C90O294C96O308C102O353C103O353C105O365C110O462C140O380C145O1189", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/loader:1:1", + "type": "JS", + "kind": "Unopt", + "func": 246, + "tm": 67084, + "source": { + "script": 119, + "start": 0, + "end": 22028, + "positions": "C0O0C4O22028", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/loader:1:1", + "type": "JS", + "kind": "Unopt", + "func": 247, + "tm": 67834, + "source": { + "script": 119, + "start": 0, + "end": 22028, + "positions": "C0O0C123O79C129O79C133O130C139O152C145O173C151O197C157O222C163O239C168O263C174O295C180O310C186O332C192O424C198O424C203O450C208O374C214O393C220O485C226O485C231O466C237O547C243O547C248O522C254O537C260O608C266O608C271O580C277O670C283O670C288O644C294O713C295O713C297O729C298O729C300O742C301O742C303O759C304O759C306O1876C307O1876C481O2304C483O15240C486O15274C493O15240C561O15293C563O17836C564O17836C566O21955C573O21976C579O21998C585O22015C591O21970C596O22027", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/loader:456:1", + "type": "JS", + "kind": "Unopt", + "func": 248, + "tm": 67875, + "source": { + "script": 119, + "start": 15293, + "end": 17803, + "positions": "C0O15352C6O17803", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/loader:83:1", + "type": "JS", + "kind": "Unopt", + "func": 249, + "tm": 67875, + "source": { + "script": 119, + "start": 2304, + "end": 15239, + "positions": "C3O2434C10O2434C18O2530C25O2530C34O2648C42O2719C47O2719C55O2822C60O2822C67O2944C72O2944C80O3172C88O3551C94O15239", + "inlined": "", + "fns": [] + } + }, + { + "name": "get esmLoader node:internal/process/esm_loader:17:16", + "type": "JS", + "kind": "Unopt", + "func": 250, + "tm": 67959, + "source": { + "script": 118, + "start": 399, + "end": 458, + "positions": "C0O408C10O429C15O429C22O425C28O454", + "inlined": "", + "fns": [] + } + }, + { + "name": "createModuleLoader node:internal/modules/esm/loader:530:28", + "type": "JS", + "kind": "Unopt", + "func": 251, + "tm": 68000, + "source": { + "script": 119, + "start": 18326, + "end": 19981, + "positions": "C10O18386C12O18394C22O18601C27O18638C32O18639C38O18687C46O18687C51O18752C57O18759C62O18772C75O18839C79O18839C81O19344C86O19352C101O19587C108O19619C111O19637C116O19619C125O19587C140O19459C147O19352C153O19832C159O19857C169O19879C174O19896C180O19939C187O19946C192O19979", + "inlined": "", + "fns": [] + } + }, + { + "name": "isLoaderWorker node:internal/modules/esm/utils:205:24", + "type": "JS", + "kind": "Unopt", + "func": 252, + "tm": 68042, + "source": { + "script": 66, + "start": 6908, + "end": 6940, + "positions": "C0O6915C4O6938", + "inlined": "", + "fns": [] + } + }, + { + "name": "ModuleLoader node:internal/modules/esm/loader:132:14", + "type": "JS", + "kind": "Unopt", + "func": 253, + "tm": 68042, + "source": { + "script": 119, + "start": 3582, + "end": 3764, + "positions": "C5O3582C24O3605C34O3609C40O3667C50O3667C54O3726C59O3726C65O3763", + "inlined": "", + "fns": [] + } + }, + { + "name": "getDefaultConditions node:internal/modules/esm/utils:41:30", + "type": "JS", + "kind": "Unopt", + "func": 254, + "tm": 68084, + "source": { + "script": 66, + "start": 955, + "end": 1032, + "positions": "C0O962C7O969C10O987C12O962C16O1005C20O1030", + "inlined": "", + "fns": [] + } + }, + { + "name": "newResolveCache node:internal/modules/esm/loader:35:25", + "type": "JS", + "kind": "Unopt", + "func": 255, + "tm": 68084, + "source": { + "script": 119, + "start": 950, + "end": 1056, + "positions": "C0O982C6O982C11O965C16O1035C21O1054", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/module_map:1:1", + "type": "JS", + "kind": "Unopt", + "func": 256, + "tm": 68167, + "source": { + "script": 120, + "start": 0, + "end": 3877, + "positions": "C0O0C4O3877", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/module_map:1:1", + "type": "JS", + "kind": "Unopt", + "func": 257, + "tm": 68334, + "source": { + "script": 120, + "start": 0, + "end": 3877, + "positions": "C0O0C36O25C42O47C48O68C54O90C60O107C66O121C71O179C77O179C82O155C88O231C94O231C99O264C112O265C118O231C120O342C126O342C131O368C136O317C142O403C148O403C153O384C179O838C227O811C231O2832C274O3826C281O3847C287O3860C293O3841C298O3876", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/assert:1:1", + "type": "JS", + "kind": "Unopt", + "func": 258, + "tm": 68417, + "source": { + "script": 121, + "start": 0, + "end": 3876, + "positions": "C0O0C4O3876", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/assert:1:1", + "type": "JS", + "kind": "Unopt", + "func": 259, + "tm": 68542, + "source": { + "script": 121, + "start": 0, + "end": 3876, + "positions": "C0O0C49O25C54O49C60O75C66O89C71O105C77O180C80O180C85O161C91O375C94O375C99O401C104O223C110O259C116O296C122O337C128O502C130O502C132O692C139O728C145O763C151O814C157O845C163O692C165O1271C168O1295C178O1271C183O1271C185O3809C192O3830C198O3853C204O3824C209O3875", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/assert:44:3", + "type": "JS", + "kind": "Unopt", + "func": 260, + "tm": 68625, + "source": { + "script": 121, + "start": 1326, + "end": 1364, + "positions": "C0O1341C2O1345C4O1341C8O1364", + "inlined": "", + "fns": [] + } + }, + { + "name": "ResolveCache node:internal/modules/esm/module_map:26:14", + "type": "JS", + "kind": "Unopt", + "func": 261, + "tm": 68625, + "source": { + "script": 120, + "start": 861, + "end": 878, + "positions": "C3O867C27O867C52O877", + "inlined": "", + "fns": [] + } + }, + { + "name": "newLoadCache node:internal/modules/esm/loader:44:22", + "type": "JS", + "kind": "Unopt", + "func": 262, + "tm": 68667, + "source": { + "script": 119, + "start": 1233, + "end": 1333, + "positions": "C0O1262C6O1262C11O1248C16O1315C21O1331", + "inlined": "", + "fns": [] + } + }, + { + "name": "LoadCache node:internal/modules/esm/module_map:90:14", + "type": "JS", + "kind": "Unopt", + "func": 263, + "tm": 68667, + "source": { + "script": 120, + "start": 2855, + "end": 2872, + "positions": "C3O2861C27O2861C42O2871", + "inlined": "", + "fns": [] + } + }, + { + "name": "getTranslators node:internal/modules/esm/loader:53:24", + "type": "JS", + "kind": "Unopt", + "func": 264, + "tm": 68709, + "source": { + "script": 119, + "start": 1518, + "end": 1617, + "positions": "C0O1549C6O1549C11O1533C16O1615", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/translators:1:1", + "type": "JS", + "kind": "Unopt", + "func": 265, + "tm": 68875, + "source": { + "script": 122, + "start": 0, + "end": 19320, + "positions": "C0O0C4O19320", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/modules/esm/translators:1:1", + "type": "JS", + "kind": "Unopt", + "func": 266, + "tm": 69584, + "source": { + "script": 122, + "start": 0, + "end": 19320, + "positions": "C0O0C208O25C214O46C220O57C226O70C232O94C238O127C244O141C250O157C256O178C261O189C267O200C273O227C279O256C285O280C291O309C297O319C303O355C308O357C314O448C315O448C317O673C320O673C325O648C331O719C337O719C341O719C343O772C349O772C354O755C360O828C366O828C371O795C377O804C383O813C389O890C395O890C400O855C406O876C412O977C418O977C423O945C429O958C435O1063C441O1063C446O1025C452O1040C458O1055C464O1100C470O1100C475O1133C488O1134C494O1100C496O1244C502O1244C507O1186C513O1211C519O1225C525O1349C531O1349C536O1375C541O1280C547O1310C553O1415C559O1415C564O1391C570O1483C573O1483C578O1523C584O1567C590O1567C594O1567C596O1635C602O1635C607O1615C613O1708C619O1708C624O1680C630O1799C631O1799C633O2447C635O2447C641O2462C643O2482C647O2497C649O2520C653O2553C654O2553C656O4909C669O4909C675O9562C677O9562C682O9562C684O11512C697O11512C703O11800C716O11800C722O15500C735O15500C741O15979C744O15987C751O15996C754O15979C756O16021C769O16021C775O18361C788O18361C795O19319", + "inlined": "", + "fns": [] + } + }, + { + "name": "setCustomizations node:internal/modules/esm/loader:187:20", + "type": "JS", + "kind": "Unopt", + "func": 267, + "tm": 69667, + "source": { + "script": 119, + "start": 5321, + "end": 5548, + "positions": "C0O5344C5O5365C9O5387C13O5460C17O5443C23O5503C24O5531C29O5547", + "inlined": "", + "fns": [] + } + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", + "type": "JS", + "kind": "Unopt", + "func": 268, + "tm": 70000, + "source": { + "script": 123, + "start": 0, + "end": 494, + "positions": "C0O0C4O494", + "inlined": "", + "fns": [] + } + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", + "type": "JS", + "kind": "Unopt", + "func": 269, + "tm": 70042, + "source": { + "script": 123, + "start": 0, + "end": 494, + "positions": "C0O25C3O25C8O56C13O118C16O130C21O155C30O127C42O185C53O227C65O219C70O219C72O294C76O301C81O316C93O392C101O301C106O412C110O419C115O434C119O442C135O476C140O484C148O419C156O493", + "inlined": "", + "fns": [] + } + }, + { + "name": "get BlockList node:net:2373:16", + "type": "JS", + "kind": "Unopt", + "func": 270, + "tm": 70084, + "source": { + "script": 86, + "start": 65392, + "end": 65481, + "positions": "C0O65401C14O65415C19O65444C26O65411C32O65460C36O65477", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/blocklist:1:1", + "type": "JS", + "kind": "Unopt", + "func": 271, + "tm": 70167, + "source": { + "script": 124, + "start": 0, + "end": 3880, + "positions": "C0O0C4O3880", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/blocklist:1:1", + "type": "JS", + "kind": "Unopt", + "func": 272, + "tm": 70292, + "source": { + "script": 124, + "start": 0, + "end": 3880, + "positions": "C0O0C35O25C41O36C46O60C51O128C54O128C59O107C65O205C68O205C73O191C78O294C81O294C86O242C92O268C98O386C101O386C106O340C111O358C116O368C121O451C124O451C129O439C135O502C138O502C142O502C144O546C147O546C152O529C158O612C161O612C166O638C171O585C177O689C180O689C185O655C191O670C197O746C204O885C241O3226C251O3387C277O3522C299O3694C304O3728C309O3738C313O3716C317O3790C322O3811C327O3751C332O3824C339O3845C345O3858C351O3839C356O3879", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/socketaddress:1:1", + "type": "JS", + "kind": "Unopt", + "func": 273, + "tm": 70417, + "source": { + "script": 125, + "start": 0, + "end": 3388, + "positions": "C0O0C4O3388", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/socketaddress:1:1", + "type": "JS", + "kind": "Unopt", + "func": 274, + "tm": 70542, + "source": { + "script": 125, + "start": 0, + "end": 3388, + "positions": "C0O0C41O25C46O49C51O143C54O143C59O100C65O118C71O129C77O257C80O257C85O185C91O203C97O221C103O237C109O345C112O345C117O307C122O313C128O435C131O435C136O405C141O417C147O482C150O482C155O470C161O573C164O573C169O527C174O545C179O555C184O634C187O634C191O634C193O669C196O669C200O669C202O717C235O2097C245O2340C255O2509C287O2904C309O3169C314O3209C319O3219C323O3191C327O3275C332O3300C337O3232C342O3313C349O3334C355O3351C361O3376C367O3328C372O3387", + "inlined": "", + "fns": [] + } + }, + { + "name": "get SocketAddress node:net:2377:20", + "type": "JS", + "kind": "Unopt", + "func": 275, + "tm": 70625, + "source": { + "script": 86, + "start": 65502, + "end": 65607, + "positions": "C0O65511C14O65529C19O65562C26O65525C32O65582C36O65603", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:worker_threads:1:1", + "type": "JS", + "kind": "Unopt", + "func": 276, + "tm": 70709, + "source": { + "script": 126, + "start": 0, + "end": 687, + "positions": "C0O0C4O687", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:worker_threads:1:1", + "type": "JS", + "kind": "Unopt", + "func": 277, + "tm": 70750, + "source": { + "script": 126, + "start": 0, + "end": 687, + "positions": "C0O140C3O140C8O25C13O41C18O54C23O72C28O94C33O116C38O128C43O286C46O286C51O179C56O194C61O212C66O240C71O264C76O354C79O354C84O328C89O383C96O404C102O420C108O435C114O453C120O477C126O505C132O529C138O547C144O559C150O572C156O622C162O642C168O664C174O398C179O686", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/worker:1:1", + "type": "JS", + "kind": "Unopt", + "func": 278, + "tm": 71042, + "source": { + "script": 127, + "start": 0, + "end": 16395, + "positions": "C0O0C4O16395", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/worker:1:1", + "type": "JS", + "kind": "Unopt", + "func": 279, + "tm": 71625 + }, + { + "name": " node:internal/perf/event_loop_utilization:1:1", + "type": "JS", + "kind": "Unopt", + "func": 280, + "tm": 71750, + "source": { + "script": 128, + "start": 0, + "end": 1527, + "positions": "C0O0C4O1527", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/perf/event_loop_utilization:1:1", + "type": "JS", + "kind": "Unopt", + "func": 281, + "tm": 71834, + "source": { + "script": 128, + "start": 0, + "end": 1527, + "positions": "C0O0C29O120C32O120C37O36C42O42C48O88C54O104C60O1449C67O1470C73O1502C79O1464C84O1526", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/worker/io:1:1", + "type": "JS", + "kind": "Unopt", + "func": 282, + "tm": 72084, + "source": { + "script": 129, + "start": 0, + "end": 15479, + "positions": "C0O0C4O15479", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/worker/io:1:1", + "type": "JS", + "kind": "Unopt", + "func": 283, + "tm": 72667 + }, + { + "name": " node:internal/error_serdes:1:1", + "type": "JS", + "kind": "Unopt", + "func": 284, + "tm": 72959, + "source": { + "script": 130, + "start": 0, + "end": 5723, + "positions": "C0O0C4O5723", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/error_serdes:1:1", + "type": "JS", + "kind": "Unopt", + "func": 285, + "tm": 73167, + "source": { + "script": 130, + "start": 0, + "end": 5723, + "positions": "C0O0C138O30C144O30C149O47C153O30C155O66C161O91C166O100C171O113C177O138C183O154C189O170C195O194C201O228C207O257C213O281C218O295C224O322C229O336C234O354C239O365C245O387C251O415C257O436C262O451C268O464C273O477C279O509C285O545C291O581C296O661C302O661C307O625C312O635C318O704C319O704C321O733C323O733C325O760C327O760C329O788C331O788C333O822C335O822C337O854C340O864C344O854C346O888C353O892C359O899C365O910C371O922C377O932C383O945C389O961C395O888C397O1005C400O1017C407O1005C412O1005C414O2716C415O2716C417O2913C418O2913C420O4448C421O4448C423O5668C430O5687C436O5703C442O5683C447O5722", + "inlined": "", + "fns": [] + } + }, + { + "name": "Socket node:net:353:16", + "type": "JS", + "kind": "Unopt", + "func": 286, + "tm": 73375 + }, + { + "name": "Duplex node:internal/streams/duplex:54:16", + "type": "JS", + "kind": "Unopt", + "func": 287, + "tm": 73459, + "source": { + "script": 95, + "start": 2011, + "end": 2663, + "positions": "C0O2025C2O2036C7O2060C12O2067C17O2087C18O2091C23O2100C28O2100C34O2123C39O2132C44O2132C50O2156C54O2204C62O2218C63O2194C67O2246C77O2279C83O2303C87O2323C93O2344C97O2363C103O2389C107O2420C117O2453C123O2477C127O2497C133O2519C137O2538C143O2559C147O2578C153O2602C159O2631C160O2650C165O2662", + "inlined": "", + "fns": [] + } + }, + { + "name": "Readable node:internal/streams/readable:314:18", + "type": "JS", + "kind": "Unopt", + "func": 288, + "tm": 73500, + "source": { + "script": 96, + "start": 10487, + "end": 11358, + "positions": "C0O10487C9O10501C16O10512C21O10538C28O10545C33O10567C34O10722C41O10738C44O10745C48O10727C52O10756C71O10778C76O10776C80O10825C84O10863C92O10890C95O10911C99O10901C103O10941C111O10971C114O10995C118O10985C122O11028C130O11060C133O11086C137O11076C141O11114C149O11125C151O11141C158O11164C166O11141C171O11186C178O11193C186O11193C192O11217C199O11229C212O11229C219O11357", + "inlined": "", + "fns": [] + } + }, + { + "name": "Stream node:internal/streams/legacy:10:16", + "type": "JS", + "kind": "Unopt", + "func": 289, + "tm": 73542, + "source": { + "script": 97, + "start": 127, + "end": 160, + "positions": "C0O138C5O141C10O141C17O159", + "inlined": "", + "fns": [] + } + }, + { + "name": "ReadableState node:internal/streams/readable:253:23", + "type": "JS", + "kind": "Unopt", + "func": 290, + "tm": 73625, + "source": { + "script": 96, + "start": 7949, + "end": 10467, + "positions": "C0O8287C6O8326C8O8355C11O8362C15O8344C20O8489C22O8494C27O8504C32O8517C34O8515C40O8532C42O8530C48O8547C50O8545C53O8502C57O8678C61O8701C67O8713C69O8718C78O8729C83O8726C87O8745C93O8761C95O8780C101O8804C103O8809C112O8820C117O8817C121O8978C126O8999C130O9013C145O9013C154O9086C159O9086C163O8997C167O9289C169O9307C172O9303C177O9301C181O9323C182O9335C186O9342C188O9353C192O9421C196O9444C206O9465C208O9470C217O9482C219O9481C224O9478C228O9570C232O9593C242O9616C244O9621C253O9633C255O9632C260O9629C264O9869C271O9876C279O9897C284O9944C291O9974C296O9993C298O9998C307O10009C312O10006C318O10040C323O10051C328O10051C335O10086C337O10107C343O10141C350O10147C355O10141C356O10299C357O10322C361O10333C365O10356C371O10372C373O10391C376O10413C383O10387C388O10385C392O10452C396O10442C401O10466", + "inlined": "", + "fns": [] + } + }, + { + "name": "getHighWaterMark node:internal/streams/state:32:26", + "type": "JS", + "kind": "Unopt", + "func": 291, + "tm": 73667, + "source": { + "script": 100, + "start": 826, + "end": 1234, + "positions": "C0O880C12O880C18O931C21O954C26O959C33O987C38O1013C47O1035C56O1080C69O1086C74O1080C75O1134C80O1141C84O1156C85O1183C88O1220C93O1190C97O1232", + "inlined": "", + "fns": [] + } + }, + { + "name": "highWaterMarkFrom node:internal/streams/state:14:27", + "type": "JS", + "kind": "Unopt", + "func": 292, + "tm": 73709, + "source": { + "script": 100, + "start": 313, + "end": 454, + "positions": "C0O363C7O395C15O415C19O433C25O452", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:internal/streams/readable:123:8", + "type": "JS", + "kind": "Unopt", + "func": 293, + "tm": 73709, + "source": { + "script": 96, + "start": 3814, + "end": 3855, + "positions": "C0O3819C4O3832C6O3831C12O3840C17O3847C21O3853", + "inlined": "", + "fns": [] + } + }, + { + "name": "getDefaultHighWaterMark node:internal/streams/state:19:33", + "type": "JS", + "kind": "Unopt", + "func": 294, + "tm": 73750, + "source": { + "script": 100, + "start": 488, + "end": 586, + "positions": "C0O505C6O525C12O558C14O584", + "inlined": "", + "fns": [] + } + }, + { + "name": "BufferList node:internal/streams/buffer_list:14:14", + "type": "JS", + "kind": "Unopt", + "func": 295, + "tm": 73750, + "source": { + "script": 99, + "start": 265, + "end": 338, + "positions": "C0O274C1O284C5O296C6O306C10O318C11O330C16O337", + "inlined": "", + "fns": [] + } + }, + { + "name": "construct node:internal/streams/destroy:219:19", + "type": "JS", + "kind": "Unopt", + "func": 296, + "tm": 73792, + "source": { + "script": 94, + "start": 4433, + "end": 4821, + "positions": "C0O4468C8O4501C9O4508C10O4533C15O4568C20O4587C24O4600C25O4614C29O4629C33O4642C34O4656C38O4679C45O4684C48O4679C54O4715C61O4729C64O4715C72O4741C77O4766C78O4773C79O4781C82O4789C90O4789C97O4820", + "inlined": "", + "fns": [] + } + }, + { + "name": "Writable node:internal/streams/writable:375:18", + "type": "JS", + "kind": "Unopt", + "func": 297, + "tm": 73834, + "source": { + "script": 103, + "start": 12486, + "end": 14066, + "positions": "C0O12486C9O13060C16O13077C19O13084C23O13066C27O13096C33O13114C44O13114C51O13170C58O13177C63O13199C64O13203C83O13225C88O13223C92O13272C96O13310C104O13338C107O13360C111O13350C115O13391C123O13420C126O13443C130O13433C134O13475C142O13505C145O13529C149O13519C153O13562C161O13590C164O13612C168O13602C172O13643C180O13675C183O13701C187O13691C191O13729C197O13743C204O13766C212O13743C217O13788C224O13795C232O13795C238O13819C245O13831C258O13831C265O14065", + "inlined": "", + "fns": [] + } + }, + { + "name": "WritableState node:internal/streams/writable:292:23", + "type": "JS", + "kind": "Unopt", + "func": 298, + "tm": 73917, + "source": { + "script": 103, + "start": 9280, + "end": 11922, + "positions": "C0O9614C6O9653C8O9682C11O9689C15O9671C20O9816C22O9821C27O9831C32O9839C34O9837C40O9854C42O9852C48O9867C50O9865C53O9829C57O9884C61O9907C67O9919C69O9924C78O9935C83O9932C87O9950C93O9966C95O9985C101O10005C103O10010C112O10021C117O10018C121O10222C126O10243C130O10257C145O10257C154O10330C159O10330C163O10241C167O10365C171O10389C181O10414C183O10419C192O10430C197O10427C201O10508C205O10531C215O10552C217O10557C226O10569C228O10568C233O10565C237O10657C241O10680C251O10703C253O10708C262O10720C264O10719C269O10716C273O10956C280O10963C288O10984C293O11031C300O11061C305O11080C307O11085C316O11096C321O11093C327O11127C332O11138C337O11138C344O11173C346O11178C355O11190C357O11189C362O11186C366O11216C368O11221C373O11244C379O11278C386O11284C391O11278C392O11481C393O11493C397O11566C398O11578C402O11640C405O11663C412O11663C418O11653C422O11752C423O11766C427O11774C430O11774C434O11901C435O11916C440O11921", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:internal/streams/writable:119:8", + "type": "JS", + "kind": "Unopt", + "func": 299, + "tm": 73959, + "source": { + "script": 103, + "start": 3822, + "end": 3863, + "positions": "C0O3827C4O3840C6O3839C12O3848C17O3855C21O3861", + "inlined": "", + "fns": [] + } + }, + { + "name": "resetBuffer node:internal/streams/writable:357:21", + "type": "JS", + "kind": "Unopt", + "func": 300, + "tm": 73959, + "source": { + "script": 103, + "start": 11944, + "end": 12088, + "positions": "C0O11956C2O11962C6O11978C10O11988C11O12008C15O12015C17O12021C26O12032C31O12046C33O12044C39O12029C43O12058C45O12064C54O12076C56O12075C61O12072C66O12087", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:internal/streams/readable:124:8", + "type": "JS", + "kind": "Unopt", + "func": 301, + "tm": 74000, + "source": { + "script": 96, + "start": 3864, + "end": 3950, + "positions": "C0O3880C4O3891C8O3896C17O3907C20O3904C26O3923C30O3928C39O3939C44O3936C49O3949", + "inlined": "", + "fns": [] + } + }, + { + "name": "createHandle node:net:165:22", + "type": "JS", + "kind": "Unopt", + "func": 302, + "tm": 74042, + "source": { + "script": 86, + "start": 4563, + "end": 4925, + "positions": "C0O4583C13O4583C18O4626C23O4626C28O4649C30O4658C35O4676C42O4699C46O4711C49O4725C57O4734C60O4748C67O4683C72O4762C73O4770C75O4779C80O4796C87O4818C91O4830C94O4843C102O4852C105O4865C112O4803C117O4879C118O4887C125O4893C130O4887", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/validators:114:3", + "type": "JS", + "kind": "Unopt", + "func": 303, + "tm": 74042, + "source": { + "script": 15, + "start": 2811, + "end": 3274, + "positions": "C36O2952C42O2991C58O2997C63O2991C64O3056C69O3061C75O3093C91O3099C96O3093C97O3158C99O3168C106O3183C111O3198C121O3237C134O3250C147O3204C152O3198C154O3273", + "inlined": "", + "fns": [] + } + }, + { + "name": "guessHandleType node:internal/util:826:25", + "type": "JS", + "kind": "Unopt", + "func": 304, + "tm": 74084, + "source": { + "script": 16, + "start": 22819, + "end": 22892, + "positions": "C0O22841C5O22841C10O22865C17O22883C20O22890", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:net:2301:6", + "type": "JS", + "kind": "Unopt", + "func": 305, + "tm": 74167, + "source": { + "script": 86, + "start": 63595, + "end": 63628, + "positions": "C0O63601C2O63613C7O63622C13O63626", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:net:2300:6", + "type": "JS", + "kind": "Unopt", + "func": 306, + "tm": 74167, + "source": { + "script": 86, + "start": 63560, + "end": 63588, + "positions": "C0O63565C2O63577C4O63576C7O63586", + "inlined": "", + "fns": [] + } + }, + { + "name": "Readable.on node:internal/streams/readable:1103:33", + "type": "JS", + "kind": "Unopt", + "func": 307, + "tm": 74250, + "source": { + "script": 96, + "start": 34992, + "end": 35891, + "positions": "C0O35017C5O35024C10O35034C15O35037C29O35037C35O35078C40O35097C42O35104C47O35286C55O35286C62O35312C65O35279C69O35405C79O35435C84O35435C90O35454C92O35461C97O35494C103O35515C109O35542C111O35587C117O35566C121O35601C122O35615C126O35630C127O35652C131O35667C139O35694C144O35708C149O35667C154O35734C160O35752C163O35752C169O35796C175O35815C178O35823C186O35823C192O35878C194O35889", + "inlined": "", + "fns": [] + } + }, + { + "name": "initSocketHandle node:net:309:26", + "type": "JS", + "kind": "Unopt", + "func": 308, + "tm": 74292, + "source": { + "script": 86, + "start": 7887, + "end": 8465, + "positions": "C0O7903C5O7903C9O7919C10O7934C14O8020C20O8040C27O8048C32O8062C36O8079C43O8096C45O8094C49O8114C51O8119C57O8157C62O8138C66O8136C70O8186C72O8191C74O8190C78O8205C80O8241C82O8246C84O8245C88O8265C90O8306C94O8324C99O8329C105O8362C106O8369C107O8378C109O8383C114O8392C118O8422C123O8430C128O8430C134O8464", + "inlined": "", + "fns": [] + } + }, + { + "name": "undestroy node:internal/streams/destroy:154:19", + "type": "JS", + "kind": "Unopt", + "func": 309, + "tm": 74334, + "source": { + "script": 94, + "start": 2820, + "end": 3492, + "positions": "C0O2842C5O2875C10O2894C14O2907C15O2921C19O2933C20O2942C24O2955C25O2970C29O2983C30O2995C34O3008C35O3018C39O3030C40O3045C44O3058C45O3068C49O3093C57O3089C61O3134C69O3130C73O3161C77O3174C78O3188C82O3200C83O3212C87O3225C88O3234C92O3247C93O3262C97O3275C98O3285C102O3297C103O3312C107O3325C108O3339C112O3352C113O3366C117O3391C125O3387C129O3428C137O3424C141O3467C149O3463C154O3491", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:internal/streams/readable:177:8", + "type": "JS", + "kind": "Unopt", + "func": 310, + "tm": 74375, + "source": { + "script": 96, + "start": 6229, + "end": 6392, + "positions": "C0O6245C4O6266C6O6271C11O6286C15O6303C17O6308C26O6319C31O6316C37O6352C39O6357C48O6369C50O6368C55O6365C60O6391", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:internal/streams/writable:120:8", + "type": "JS", + "kind": "Unopt", + "func": 311, + "tm": 74375, + "source": { + "script": 103, + "start": 3872, + "end": 3958, + "positions": "C0O3888C4O3899C8O3904C17O3915C20O3912C26O3931C30O3936C39O3947C44O3944C49O3957", + "inlined": "", + "fns": [] + } + }, + { + "name": "set node:internal/streams/writable:205:8", + "type": "JS", + "kind": "Unopt", + "func": 312, + "tm": 74417, + "source": { + "script": 103, + "start": 7017, + "end": 7180, + "positions": "C0O7033C4O7054C6O7059C11O7074C15O7091C17O7096C26O7107C31O7104C37O7140C39O7145C48O7157C50O7156C55O7153C60O7179", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:internal/streams/writable:218:8", + "type": "JS", + "kind": "Unopt", + "func": 313, + "tm": 74417, + "source": { + "script": 103, + "start": 7253, + "end": 7350, + "positions": "C0O7258C2O7271C4O7270C10O7281C12O7279C17O7295C24O7309C26O7308C32O7319C34O7317C39O7330C46O7348", + "inlined": "", + "fns": [] + } + }, + { + "name": "getNewAsyncId node:net:184:23", + "type": "JS", + "kind": "Unopt", + "func": 314, + "tm": 74459, + "source": { + "script": 86, + "start": 4950, + "end": 5066, + "positions": "C0O4963C4O4996C14O5029C17O5029C22O5051C27O5051C31O5064", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:internal/bootstrap/node:371:8", + "type": "JS", + "kind": "Unopt", + "func": 315, + "tm": 74500, + "source": { + "script": 12, + "start": 12775, + "end": 12808, + "positions": "C0O12786C4O12802", + "inlined": "", + "fns": [] + } + }, + { + "name": "get /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:19:10", + "type": "JS", + "kind": "Unopt", + "func": 316, + "tm": 74500, + "source": { + "script": 123, + "start": 392, + "end": 404, + "positions": "C0O398C4O404", + "inlined": "", + "fns": [] + } + }, + { + "name": "realpathSync node:fs:2611:22", + "type": "JS", + "kind": "Sparkplug", + "func": 108, + "tm": 74667, + "source": { + "script": 55, + "start": 68813, + "end": 72563, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "deprecate node:internal/util:156:19", + "type": "JS", + "kind": "Sparkplug", + "func": 317, + "tm": 74709, + "source": { + "script": 16, + "start": 4112, + "end": 5092, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "getOwn node:internal/bootstrap/realm:202:16", + "type": "JS", + "kind": "Sparkplug", + "func": 242, + "tm": 74750, + "source": { + "script": 9, + "start": 6377, + "end": 6531, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "syncExports node:internal/bootstrap/realm:365:14", + "type": "JS", + "kind": "Sparkplug", + "func": 241, + "tm": 74750, + "source": { + "script": 9, + "start": 11891, + "end": 12224, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "SafeWeakMap node:internal/per_context/primordials:419:16", + "type": "JS", + "kind": "Sparkplug", + "func": 318, + "tm": 74750, + "source": { + "script": 6, + "start": 12147, + "end": 12164, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "noop node:internal/util/debuglog:46:14", + "type": "JS", + "kind": "Sparkplug", + "func": 88, + "tm": 74792, + "source": { + "script": 22, + "start": 1404, + "end": 1412, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36", + "type": "JS", + "kind": "Sparkplug", + "func": 93, + "tm": 74792, + "source": { + "script": 9, + "start": 9152, + "end": 9220, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": "readPackage node:internal/modules/package_json_reader:140:21", + "type": "JS", + "kind": "Sparkplug", + "func": 99, + "tm": 74792, + "source": { + "script": 65, + "start": 3950, + "end": 4020, + "positions": "", + "inlined": "", + "fns": [] + } + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", + "type": "JS", + "kind": "Unopt", + "func": 319, + "tm": 74917, + "source": { + "script": 131, + "start": 0, + "end": 85, + "positions": "C0O0C4O85", + "inlined": "", + "fns": [] + } + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", + "type": "JS", + "kind": "Unopt", + "func": 320, + "tm": 74959, + "source": { + "script": 131, + "start": 0, + "end": 85, + "positions": "C0O14C4O22C12O35C16O43C21O22C27O49C31O57C39O71C43O79C48O57C55O84", + "inlined": "", + "fns": [] + } + }, + { + "name": "initializeFrozenIntrinsics node:internal/process/pre_execution:714:36", + "type": "JS", + "kind": "Unopt", + "func": 321, + "tm": 75042, + "source": { + "script": 67, + "start": 22147, + "end": 22369, + "positions": "C0O22154C8O22158C14O22203C17O22211C28O22211C34O22323C40O22323C45O22360C49O22368", + "inlined": "", + "fns": [] + } + }, + { + "name": "markBootstrapComplete node:internal/process/pre_execution:735:31", + "type": "JS", + "kind": "Unopt", + "func": 322, + "tm": 75042, + "source": { + "script": 67, + "start": 22751, + "end": 22815, + "positions": "C0O22758C6O22758C11O22788C16O22789C21O22814", + "inlined": "", + "fns": [] + } + }, + { + "name": "executeUserEntryPoint node:internal/modules/run_main:127:31", + "type": "JS", + "kind": "Unopt", + "func": 323, + "tm": 75125, + "source": { + "script": 70, + "start": 4520, + "end": 4888, + "positions": "C7O4536C14O4540C22O4570C25O4570C30O4616C33O4616C38O4652C40O4676C45O4687C50O4676C56O4807C62O4807C67O4796C72O4858C87O4858C93O4887", + "inlined": "", + "fns": [] + } + }, + { + "name": "resolveMainPath node:internal/modules/run_main:15:25", + "type": "JS", + "kind": "Unopt", + "func": 324, + "tm": 75375, + "source": { + "script": 70, + "start": 344, + "end": 1479, + "positions": "C0O375C8O375C13O452C15O464C17O480C22O500C30O504C36O550C37O557C38O564C43O580C48O580C56O765C62O765C67O754C72O827C79O837C82O842C87O842C100O827C106O876C110O893C111O900C112O935C120O935C125O981C127O1037C133O1037C138O1022C146O1101C154O1099C164O1149C166O1165C176O1184C186O1191C191O1258C199O1258C204O1223C209O1329C217O1329C222O1315C227O1363C230O1409C237O1363C242O1437C244O1437C245O1461C247O1477", + "inlined": "", + "fns": [] + } + }, + { + "name": "tryPackage node:internal/modules/cjs/loader:429:20", + "type": "JS", + "kind": "Unopt", + "func": 325, + "tm": 75500, + "source": { + "script": 63, + "start": 12095, + "end": 13355, + "positions": "C0O12153C5O12153C10O12178C15O12188C17O12204C22O12225C25O12230C33O12230C46O12211C51O12275C52O12300C57O12305C62O12305C69O12347C72O12347C91O12380C103O12439C106O12444C114O12444C127O12425C133O12489C138O12517C143O12540C146O12545C154O12545C167O12526C173O12595C175O12683C185O12725C198O12739C204O12683C210O12828C212O12837C216O12865C218O12876C221O12881C229O12881C235O12874C239O12925C241O12941C245O13018C247O13018C248O13065C253O13070C261O13070C268O13114C271O13122C281O13171C294O13188C307O13197C317O13122C322O13339C324O13353", + "inlined": "", + "fns": [] + } + }, + { + "name": "reportModuleNotFoundToWatchMode node:internal/modules/cjs/loader:239:41", + "type": "JS", + "kind": "Unopt", + "func": 326, + "tm": 75584, + "source": { + "script": 63, + "start": 6858, + "end": 7057, + "positions": "C0O6858C9O6885C16O6889C26O6930C32O6942C37O6950C51O6974C54O6992C59O6974C68O6950C74O7056", + "inlined": "", + "fns": [] + } + }, + { + "name": "shouldUseESMLoader node:internal/modules/run_main:52:28", + "type": "JS", + "kind": "Unopt", + "func": 327, + "tm": 75625, + "source": { + "script": 70, + "start": 1667, + "end": 3093, + "positions": "C0O1682C8O1686C15O1732C20O1748C21O1760C22O1936C30O1936C35O2152C43O2152C48O2198C54O2205C59O2224C65O2231C70O2238C71O2250C72O2309C78O2325C84O2325C91O2370C92O2382C93O2387C99O2404C105O2404C112O2449C113O2462C114O2497C120O2497C125O2476C130O2560C135O2670C142O2674C166O2709C167O2721C168O2749C169O2762C170O2823C178O2827C184O3004C191O3011C196O3053C197O3068C198O3081", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/process/execution:169:10", + "type": "JS", + "kind": "Unopt", + "func": 328, + "tm": 75792, + "source": { + "script": 33, + "start": 5799, + "end": 7350, + "positions": "C0O5963C5O5963C8O6011C19O6073C22O6081C36O6081C41O6129C46O6155C52O6183C57O6205C62O6205C69O6231C72O6244C86O6244C96O6452C99O6465C105O6487C109O6504C113O6522C118O6541C120O6539C124O6570C127O6578C137O6591C140O6578C152O6705C153O6718C154O6862C160O6862C165O6879C173O6880C178O6976C183O6980C188O7036C193O7036C197O7064C198O7076C203O7093C210O7093C216O7136C221O7136C225O7171C230O7171C235O7007C239O7308C244O7308C247O7334C248O7346", + "inlined": "", + "fns": [] + } + }, + { + "name": "clearDefaultTriggerAsyncId node:internal/async_hooks:442:36", + "type": "JS", + "kind": "Unopt", + "func": 329, + "tm": 76125, + "source": { + "script": 14, + "start": 15322, + "end": 15376, + "positions": "C0O15329C7O15345C12O15369C17O15375", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:internal/bootstrap/node:100:8", + "type": "JS", + "kind": "Unopt", + "func": 330, + "tm": 76792, + "source": { + "script": 12, + "start": 3833, + "end": 3880, + "positions": "C0O3844C9O3858C11O3857C17O3868C20O3874", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/validators:93:3", + "type": "JS", + "kind": "Unopt", + "func": 331, + "tm": 76834, + "source": { + "script": 15, + "start": 2186, + "end": 2567, + "positions": "C12O2206C25O2236C32O2269C38O2306C54O2312C59O2306C60O2365C65O2370C71O2400C87O2406C92O2400C93O2459C95O2469C102O2484C107O2497C117O2536C130O2549C143O2503C148O2497C150O2566", + "inlined": "", + "fns": [] + } + }, + { + "name": "beforeInspector node:internal/errors:833:18", + "type": "JS", + "kind": "Unopt", + "func": 332, + "tm": 76959, + "source": { + "script": 10, + "start": 24705, + "end": 25081, + "positions": "C0O24719C2O24736C4O24735C11O24803C15O24809C19O24915C21O24935C23O24934C27O24964C31O24927C41O25071C45O25077", + "inlined": "", + "fns": [] + } + }, + { + "name": "prepareStackTrace node:internal/errors:91:27", + "type": "JS", + "kind": "Unopt", + "func": 333, + "tm": 79375, + "source": { + "script": 10, + "start": 2161, + "end": 3649, + "positions": "C0O2303C5O2326C10O2326C17O2354C22O2373C27O2373C33O2389C38O2408C43O2414C48O2434C53O2450C54O2477C55O2482C61O2485C66O2487C74O2508C78O2526C83O2564C86O2526C93O2610C97O2617C101O2624C102O2624C107O2654C109O2659C115O2662C120O2664C128O2689C132O2699C137O2729C140O2699C147O2760C156O2793C163O2760C168O2807C170O2631C175O2591C179O2992C186O3001C188O2999C193O3028C200O3056C203O3028C208O3112C222O3112C228O3172C230O3195C232O3191C237O3208C239O3230C240O3338C242O3353C249O3370C254O3409C266O3424C281O3440C292O3466C297O3480C302O3527C308O3534C313O3547C315O3566C316O3573C328O3606C334O3606C343O3647", + "inlined": "", + "fns": [] + } + }, + { + "name": "maybeOverridePrepareStackTrace node:internal/errors:136:40", + "type": "JS", + "kind": "Unopt", + "func": 334, + "tm": 79459, + "source": { + "script": 10, + "start": 3691, + "end": 4398, + "positions": "C0O3919C7O3924C18O3984C23O3990C28O3990C34O4022C35O4245C40O4273C48O4313C53O4337C58O4337C64O4369C65O4377C69O4396", + "inlined": "", + "fns": [] + } + }, + { + "name": "afterInspector node:internal/errors:847:17", + "type": "JS", + "kind": "Unopt", + "func": 335, + "tm": 79500, + "source": { + "script": 10, + "start": 25099, + "end": 26368, + "positions": "C0O25141C5O25168C7O25650C13O25686C19O25686C24O25707C29O25708C34O25746C41O25764C46O25789C53O25764C61O25836C64O25746C70O25851C71O25858C77O25862C84O25875C92O25879C97O25898C99O26037C102O26037C106O25949C111O25987C116O26005C121O26083C128O26097C132O26113C140O26137C145O26114C158O26195C165O26212C171O26265C174O26281C179O26296C187O26265C196O26187C201O26316C204O26337C206O26358", + "inlined": "", + "fns": [] + } + }, + { + "name": "lazyInternalUtilInspect node:internal/errors:191:33", + "type": "JS", + "kind": "Unopt", + "func": 336, + "tm": 79542, + "source": { + "script": 10, + "start": 5499, + "end": 5595, + "positions": "C0O5506C14O5530C21O5526C27O5566C31O5593", + "inlined": "", + "fns": [] + } + }, + { + "name": "lazyUtilColors node:internal/errors:197:24", + "type": "JS", + "kind": "Unopt", + "func": 337, + "tm": 79584, + "source": { + "script": 10, + "start": 5636, + "end": 5713, + "positions": "C0O5643C14O5658C21O5654C27O5693C31O5711", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/util/colors:1:1", + "type": "JS", + "kind": "Unopt", + "func": 338, + "tm": 79625, + "source": { + "script": 132, + "start": 0, + "end": 1122, + "positions": "C0O0C4O1122", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/util/colors:1:1", + "type": "JS", + "kind": "Unopt", + "func": 339, + "tm": 79667, + "source": { + "script": 132, + "start": 0, + "end": 1122, + "positions": "C0O0C26O19C27O19C29O129C37O244C45O508C55O144C59O1096C62O1103C67O1111C72O1111C77O1121", + "inlined": "", + "fns": [] + } + }, + { + "name": "refresh node:internal/util/colors:25:10", + "type": "JS", + "kind": "Unopt", + "func": 340, + "tm": 79750, + "source": { + "script": 132, + "start": 515, + "end": 1090, + "positions": "C0O524C3O536C8O543C14O576C17O583C22O591C30O614C35O591C41O629C44O636C51O651C59O649C63O688C66O695C73O711C81O709C85O748C88O755C95O771C103O769C107O808C110O815C117O832C125O830C129O869C132O876C139O890C147O888C151O927C154O934C161O949C169O947C173O986C176O993C183O1009C191O1007C195O1043C198O1050C205O1068C210O1089", + "inlined": "", + "fns": [] + } + }, + { + "name": "getStderr node:internal/bootstrap/switches/is_main_thread:170:19", + "type": "JS", + "kind": "Unopt", + "func": 341, + "tm": 79792, + "source": { + "script": 52, + "start": 4444, + "end": 5117, + "positions": "C0O4451C6O4463C10O4477C11O4480C17O4489C24O4487C30O4521C37O4542C40O4549C44O4540C48O4560C53O4583C60O4574C66O4659C73O4675C77O4693C82O4704C88O4717C91O4725C102O4725C108O4772C116O4772C120O5101C124O5115", + "inlined": "", + "fns": [] + } + }, + { + "name": "createWritableStdioStream node:internal/bootstrap/switches/is_main_thread:47:35", + "type": "JS", + "kind": "Unopt", + "func": 342, + "tm": 80167, + "source": { + "script": 52, + "start": 1458, + "end": 3026, + "positions": "C0O1471C2O1541C7O1549C42O1608C48O1608C53O1647C60O1639C66O1670C68O1683C72O1698C74O1761C80O1761C85O1838C95O1818C101O1871C103O1884C107O1898C109O1965C115O1965C120O2197C123O2209C132O2228C137O2236C144O2239C149O2284C155O2284C160O2265C165O2344C180O2378C189O2336C197O2501C209O2520C215O2493C221O2604C223O2617C227O2633C229O2784C235O2784C240O2771C245O2809C250O2841C260O2818C266O2964C268O2974C272O2983C273O2999C277O3010C279O3024", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:tty:1:1", + "type": "JS", + "kind": "Unopt", + "func": 343, + "tm": 80250, + "source": { + "script": 133, + "start": 0, + "end": 5058, + "positions": "C0O0C4O5058", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:tty:1:1", + "type": "JS", + "kind": "Unopt", + "func": 344, + "tm": 80459, + "source": { + "script": 133, + "start": 0, + "end": 5058, + "positions": "C0O0C53O1159C59O1168C65O1187C70O1239C76O1239C80O1239C82O1278C85O1278C90O1263C96O1268C102O1322C108O1322C112O1322C114O1398C117O1405C122O1358C128O1374C134O1454C140O1454C145O1422C150O1439C155O1524C156O1524C158O2114C161O2146C169O2161C174O2168C179O2114C184O2180C190O2217C195O2180C200O2227C203O2238C212O2259C216O3455C219O3488C227O3503C232O3510C237O3455C242O3522C248O3560C253O3522C258O3570C261O3582C267O3598C271O3607C274O3619C281O3643C285O3661C288O3673C295O3693C299O3707C302O3719C311O3742C315O4203C318O4215C327O4234C331O4378C334O4390C343O4411C347O4561C350O4573C359O4593C363O4736C366O4748C375O4774C379O4913C382O4925C391O4949C395O5004C402O5023C408O5031C414O5043C420O5019C425O5057", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/tty:1:1", + "type": "JS", + "kind": "Unopt", + "func": 345, + "tm": 80584, + "source": { + "script": 134, + "start": 0, + "end": 6485, + "positions": "C0O0C4O6485", + "inlined": "", + "fns": [] + } + }, + { + "name": " node:internal/tty:1:1", + "type": "JS", + "kind": "Unopt", + "func": 346, + "tm": 80834, + "source": { + "script": 134, + "start": 0, + "end": 6485, + "positions": "C0O0C69O1186C75O1208C81O1231C87O1255C93O1329C99O1329C104O1309C110O1366C111O1366C113O1395C115O1395C117O1416C119O1416C121O1438C123O1438C125O1460C127O1460C129O1877C136O1890C142O1913C148O1937C154O1960C160O1983C166O2005C172O2026C178O2050C184O2074C190O2096C196O2119C202O2140C208O2163C214O2182C220O2287C226O2379C232O1877C234O2421C336O2421C338O2542C339O2542C341O6433C348O6454C354O6471C360O6448C365O6484", + "inlined": "", + "fns": [] + } + }, + { + "name": "WriteStream node:tty:84:21", + "type": "JS", + "kind": "Unopt", + "func": 347, + "tm": 80917, + "source": { + "script": 133, + "start": 2501, + "end": 3453, + "positions": "C0O2510C2O2521C7O2550C12O2557C17O2577C18O2580C20O2587C26O2592C32O2605C37O2614C44O2620C49O2614C50O2659C52O2677C65O2677C71O2705C77O2731C84O2737C89O2731C90O2774C95O2778C100O2785C112O2840C116O2785C122O3264C127O3272C134O3272C139O3310C149O3310C155O3343C160O3351C165O3351C171O3377C173O3393C174O3415C177O3406C181O3424C183O3443C186O3434C191O3452", + "inlined": "", + "fns": [] + } + }, + { + "name": "addCleanup node:internal/bootstrap/switches/is_main_thread:142:20", + "type": "JS", + "kind": "Unopt", + "func": 348, + "tm": 82209, + "source": { + "script": 52, + "start": 3658, + "end": 3730, + "positions": "C0O3667C5O3671C10O3699C15O3699C20O3729", + "inlined": "", + "fns": [] + } + }, + { + "name": "shouldColorize node:internal/util/colors:17:17", + "type": "JS", + "kind": "Unopt", + "func": 349, + "tm": 82250, + "source": { + "script": 132, + "start": 258, + "end": 504, + "positions": "C0O273C3O285C8O289C14O324C17O331C21O348C26O349C33O365C36O369C37O380C44O393C53O426C61O472C66O472C73O488C79O500", + "inlined": "", + "fns": [] + } + }, + { + "name": "getColorDepth node:internal/tty:106:23", + "type": "JS", + "kind": "Unopt", + "func": 350, + "tm": 82334 + }, + { + "name": "get node:internal/util/inspect:370:6", + "type": "JS", + "kind": "Unopt", + "func": 351, + "tm": 82459, + "source": { + "script": 21, + "start": 11149, + "end": 11191, + "positions": "C0O11158C4O11187", + "inlined": "", + "fns": [] + } + }, + { + "name": "inspect node:internal/util/inspect:309:17", + "type": "JS", + "kind": "Unopt", + "func": 352, + "tm": 85334, + "source": { + "script": 21, + "start": 9025, + "end": 11035, + "positions": "C0O9025C2O9076C9O9165C15O9197C18O9219C28O9242C31O9264C41O9283C44O9305C54O9332C57O9354C67O9384C70O9406C80O9437C83O9459C93O9496C96O9518C106O9552C109O9574C119O9600C122O9622C132O9643C135O9665C145O9686C148O9708C158O9739C161O9761C172O9800C179O9807C184O9849C191O9856C196O9869C198O9882C203O9911C205O9932C208O9921C212O9965C219O9972C226O9988C231O10017C233O10039C236O10028C240O10096C246O10135C248O10150C254O10169C258O10203C263O10203C268O10240C270O10255C274O10245C279O10290C281O10297C285O10491C292O10536C295O10506C304O10581C309O10608C311O10623C314O10617C320O10653C326O10761C328O10777C332O10265C337O10227C341O10823C347O10831C349O10843C353O10873C359O10919C362O10917C366O10939C372O10987C375O10985C379O10999C390O11006C395O11033", + "inlined": "", + "fns": [] + } + }, + { + "name": "formatValue node:internal/util/inspect:765:21", + "type": "JS", + "kind": "Unopt", + "func": 353, + "tm": 85459, + "source": { + "script": 21, + "start": 23100, + "end": 25837, + "positions": "C0O23188C14O23265C17O23265C23O23300C26O23327C37O23307C42O23348C43O23355C47O23392C58O23392C64O23416C65O23500C68O23628C73O23657C80O23628C86O23671C88O23702C93O23729C98O23762C109O23762C115O23800C116O23819C122O23838C134O23845C139O23883C140O23894C145O24049C151O24090C153O24096C155O24095C159O24122C165O24255C170O24361C176O24382C181O24394C188O24404C193O24550C202O24578C209O24584C213O24637C216O24643C221O24681C223O24670C228O24708C236O24792C254O24708C260O24962C262O24970C267O24993C273O25034C285O25041C290O25077C291O25096C304O25145C310O25176C315O25145C328O25103C333O25195C334O25381C339O25386C344O25386C351O25421C354O25436C360O25468C362O25487C365O25483C370O25481C374O25508C379O25517C384O25517C392O25567C397O25576C402O25576C408O25594C410O25641C415O25650C419O25655C423O25672C428O25681C433O25681C439O25729C449O25751C463O25729C469O25772C470O25780C485O25787C490O25835", + "inlined": "", + "fns": [] + } + }, + { + "name": "formatRaw node:internal/util/inspect:843:19", + "type": "JS", + "kind": "Unopt", + "func": 354, + "tm": 85709 + }, + { + "name": "getConstructorName node:internal/util/inspect:587:28", + "type": "JS", + "kind": "Unopt", + "func": 355, + "tm": 85959, + "source": { + "script": 21, + "start": 17502, + "end": 18744, + "positions": "C0O17547C2O17573C7O17591C13O17594C16O17594C22O17646C30O17646C36O17702C38O17760C46O17803C51O17809C58O17814C66O17861C71O17832C78O17877C84O17930C91O17951C94O17966C99O17981C104O17987C109O17966C116O18005C127O18049C138O18005C143O18109C148O18134C153O18140C158O18116C162O18146C163O18158C168O18164C174O18195C178O18233C183O17580C187O18264C191O18295C192O18307C193O18327C198O18327C203O18386C207O18380C212O18399C218O18421C227O18457C228O18485C233O18539C246O18485C252O18560C254O18592C267O18641C273O18667C279O18687C283O18610C298O18701C299O18709C311O18727C321O18742", + "inlined": "", + "fns": [] + } + }, + { + "name": "isInstanceof node:internal/util/inspect:579:22", + "type": "JS", + "kind": "Unopt", + "func": 356, + "tm": 86042, + "source": { + "script": 21, + "start": 17376, + "end": 17473, + "positions": "C3O17406C5O17420C8O17437C11O17454C12O17467", + "inlined": "", + "fns": [] + } + }, + { + "name": "getKeys node:internal/util/inspect:708:17", + "type": "JS", + "kind": "Unopt", + "func": 357, + "tm": 86125, + "source": { + "script": 21, + "start": 21206, + "end": 22181, + "positions": "C0O21206C9O21234C11O21258C21O21258C26O21296C30O21318C40O21325C45O21375C51O21382C56O21395C63O21395C73O21755C83O21762C91O21760C101O21807C112O21814C118O21814C127O21840C134O21845C143O21882C151O21882C156O21807C160O21921C172O21928C179O21984C185O21991C190O22021C195O22085C206O22115C209O22115C215O22085C220O22167C222O22179", + "inlined": "", + "fns": [] + } + }, + { + "name": "isError node:internal/util:98:17", + "type": "JS", + "kind": "Unopt", + "func": 358, + "tm": 86167, + "source": { + "script": 16, + "start": 2305, + "end": 2539, + "positions": "C0O2491C5O2498C13O2531C15O2520C18O2537", + "inlined": "", + "fns": [] + } + }, + { + "name": "formatError node:internal/util/inspect:1367:21", + "type": "JS", + "kind": "Unopt", + "func": 359, + "tm": 86250, + "source": { + "script": 21, + "start": 44775, + "end": 47150, + "positions": "C0O44831C9O44846C12O44857C18O44846C27O44888C30O44888C35O44912C50O44912C55O44964C60O44976C65O44998C71O45005C78O45015C85O45015C92O45061C101O45061C106O45152C111O45173C117O45156C123O45196C129O45203C136O45213C143O45213C150O45260C159O45260C164O45303C179O45311C185O45436C193O45447C196O45481C202O45447C212O45500C214O45508C219O45531C225O45539C236O45631C251O45631C257O45681C259O45696C264O45710C269O45722C282O45762C296O45762C302O45833C309O45872C314O45833C320O45896C332O45896C338O45950C344O46042C347O46042C351O46066C353O46110C373O46102C404O46102C407O46140C415O46160C419O46140C425O46193C429O46214C433O46228C441O46239C446O46228C453O46257C457O46278C467O46278C486O46335C495O46364C499O46371C505O46409C509O46473C522O46473C528O46523C530O46535C535O46561C545O46585C550O46636C563O46646C569O46713C574O46752C576O46764C583O46093C657O46807C663O46824C671O46824C687O46869C692O46961C698O46976C703O47009C712O47040C718O47009C724O47061C739O47113C748O47069C754O47135C756O47148", + "inlined": "", + "fns": [] + } + }, + { + "name": "getStackString node:internal/util/inspect:1239:24", + "type": "JS", + "kind": "Unopt", + "func": 360, + "tm": 86292, + "source": { + "script": 21, + "start": 40538, + "end": 40625, + "positions": "C0O40563C8O40571C11O40584C16O40571C24O40593C27O40593C31O40623", + "inlined": "", + "fns": [] + } + }, + { + "name": "removeDuplicateErrorKeys node:internal/util/inspect:1303:34", + "type": "JS", + "kind": "Unopt", + "func": 361, + "tm": 86334, + "source": { + "script": 21, + "start": 42760, + "end": 43150, + "positions": "C0O42797C6O42816C12O42823C17O42855C39O42847C67O42847C70O42907C75O42907C81O43020C83O43030C90O43040C95O43074C99O43040C106O43093C120O43093C125O42836C190O43149", + "inlined": "", + "fns": [] + } + }, + { + "name": "improveStack node:internal/util/inspect:1270:22", + "type": "JS", + "kind": "Unopt", + "func": 362, + "tm": 86375, + "source": { + "script": 21, + "start": 41541, + "end": 42725, + "positions": "C0O41729C5O41740C11O41775C17O41775C26O41823C29O41823C36O41878C43O41885C50O41901C56O41907C63O41923C69O41929C74O41962C77O41975C81O42023C92O42023C101O42105C110O42105C116O42166C120O42192C128O42225C133O42239C140O42296C157O42317C168O42296C174O42368C176O42377C181O42397C186O42401C193O42450C194O42458C199O42477C211O42499C219O42535C225O42555C228O42555C241O42624C253O42646C266O42654C269O42654C280O42710C282O42723", + "inlined": "", + "fns": [] + } + }, + { + "name": "getPrefix node:internal/util/inspect:693:19", + "type": "JS", + "kind": "Unopt", + "func": 363, + "tm": 86417, + "source": { + "script": 21, + "start": 20784, + "end": 21153, + "positions": "C20O20828C24O20860C26O20868C33O20887C38O20904C43O20915C50O20926C63O20952C73O20960C74O20971C79O20982C86O20993C96O21018C97O21026C99O21034C106O21056C111O21071C117O21095C130O21104C140O21112C141O21119C147O21143C157O21151", + "inlined": "", + "fns": [] + } + }, + { + "name": "getStackFrames node:internal/util/inspect:1243:24", + "type": "JS", + "kind": "Unopt", + "func": 364, + "tm": 86459, + "source": { + "script": 21, + "start": 40650, + "end": 41518, + "positions": "C0O40687C8O40687C14O40729C19O40751C30O40895C37O40916C40O40916C46O40957C49O40957C54O41008C62O41008C68O41060C70O41080C75O41116C82O41137C87O41186C91O41137C100O41116C106O41229C109O41229C115O41213C120O41218C125O41280C126O41288C131O41319C133O41323C137O41348C142O41359C153O41422C160O41436C164O41454C173O41454C186O41422C191O41502C193O41516", + "inlined": "", + "fns": [] + } + }, + { + "name": "safeGetCWD node:internal/util/inspect:1357:20", + "type": "JS", + "kind": "Unopt", + "func": 365, + "tm": 86500, + "source": { + "script": 21, + "start": 44622, + "end": 44753, + "positions": "C0O44633C5O44663C8O44690C13O44690C21O44680C22O44713C23O44720C24O44727C26O44751", + "inlined": "", + "fns": [] + } + }, + { + "name": "exists node:internal/bootstrap/realm:280:16", + "type": "JS", + "kind": "Unopt", + "func": 366, + "tm": 86584, + "source": { + "script": 9, + "start": 8981, + "end": 9029, + "positions": "C0O8992C5O9013C10O9017C15O9017C20O9025", + "inlined": "", + "fns": [] + } + }, + { + "name": "stylizeWithColor node:internal/util/inspect:560:26", + "type": "JS", + "kind": "Unopt", + "func": 367, + "tm": 86584, + "source": { + "script": 21, + "start": 16938, + "end": 17179, + "positions": "C0O16973C3O16981C10O16987C14O17002C16O17047C19O17055C26O17061C30O17074C32O17105C36O17127C52O17134C65O17152C78O17159C79O17166C81O17177", + "inlined": "", + "fns": [] + } + }, + { + "name": "get node:internal/util/inspect:436:8", + "type": "JS", + "kind": "Unopt", + "func": 368, + "tm": 86625, + "source": { + "script": 21, + "start": 13153, + "end": 13190, + "positions": "C0O13164C2O13175C5O13184", + "inlined": "", + "fns": [] + } + }, + { + "name": "^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$", + "timestamp": 86667, + "type": "CODE", + "kind": "RegExp" + }, + { + "name": "getEmptyFormatArray node:internal/util/inspect:575:29", + "type": "JS", + "kind": "Unopt", + "func": 369, + "tm": 86709, + "source": { + "script": 21, + "start": 17334, + "end": 17353, + "positions": "C0O17341C2O17351", + "inlined": "", + "fns": [] + } + }, + { + "name": "formatProperty node:internal/util/inspect:1936:24", + "type": "JS", + "kind": "Unopt", + "func": 370, + "tm": 86792 + }, + { + "name": "isUndetectableObject node:internal/util/inspect:176:30", + "type": "JS", + "kind": "Unopt", + "func": 371, + "tm": 86875, + "source": { + "script": 21, + "start": 3640, + "end": 3690, + "positions": "C0O3672C9O3677C10O3690", + "inlined": "", + "fns": [] + } + }, + { + "name": "formatPrimitive node:internal/util/inspect:1620:25", + "type": "JS", + "kind": "Unopt", + "func": 372, + "tm": 86917, + "source": { + "script": 21, + "start": 53716, + "end": 55097, + "positions": "C0O53716C9O53737C15O53788C18O53806C23O53819C27O53813C32O53868C37O53881C41O53875C45O53904C54O53947C62O53912C69O53971C74O53988C87O54025C103O54061C113O54261C122O54270C124O54268C129O54302C134O54315C139O54333C143O54327C146O54348C149O54309C154O54361C165O54396C172O54425C181O54425C192O54396C205O54548C211O54579C215O54594C219O54548C229O54368C237O54610C240O54620C241O54631C249O54641C257O54638C265O54669C268O54679C269O54686C275O54721C283O54756C291O54728C296O54774C297O54777C303O54812C311O54847C319O54819C324O54865C325O54868C331O54904C336O54917C341O54911C346O54937C347O54940C353O54978C362O54985C367O55014C368O55043C375O55053C378O55053C386O55050C391O55095", + "inlined": "", + "fns": [] + } + }, + { + "name": "strEscape node:internal/util/inspect:495:19", + "type": "JS", + "kind": "Unopt", + "func": 373, + "tm": 86959, + "source": { + "script": 21, + "start": 14775, + "end": 16911, + "positions": "C0O14802C5O14850C10O14898C13O15157C21O15161C28O15292C36O15297C43O15340C48O15369C56O15374C65O15427C71O15427C78O15471C81O15499C83O15515C88O15531C93O15582C98O15729C107O15736C114O15746C117O15746C124O15797C127O15804C132O15832C133O15843C140O15850C145O15863C159O15869C166O15933C169O15940C174O15968C175O15989C178O16006C180O16024C182O16035C186O16029C191O16068C196O16068C202O16107C204O16117C211O16150C218O16174C225O16197C234O16212C239O16228C241O16237C246O16254C248O16264C253O16268C265O16300C267O16313C279O16313C288O16350C293O16354C307O16379C309O16388C315O16404C321O16414C332O16433C337O16452C343O16462C350O16477C354O16487C358O16481C363O16519C370O16552C374O16519C380O16566C386O16576C397O16595C402O16618C407O16633C409O16667C411O16680C423O16680C438O16720C444O16720C460O16764C462O16773C466O16044C471O16011C479O16808C483O16800C488O16822C490O16832C493O16832C505O16871C508O16878C513O16909", + "inlined": "", + "fns": [] + } + }, + { + "name": "addQuotes node:internal/util/inspect:478:19", + "type": "JS", + "kind": "Unopt", + "func": 374, + "tm": 87042, + "source": { + "script": 21, + "start": 14328, + "end": 14468, + "positions": "C0O14346C2O14357C7O14371C12O14382C22O14389C23O14396C25O14407C30O14421C35O14433C45O14441C46O14448C51O14459C61O14466", + "inlined": "", + "fns": [] + } + }, + { + "name": "^[a-zA-Z_][a-zA-Z_0-9]*$", + "timestamp": 87167, + "type": "CODE", + "kind": "RegExp" + }, + { + "name": "reduceToSingleString node:internal/util/inspect:2032:30", + "type": "JS", + "kind": "Unopt", + "func": 375, + "tm": 87250, + "source": { + "script": 21, + "start": 67959, + "end": 70831, + "positions": "C0O68035C10O68074C18O68102C25O68110C30O68281C35O68396C37O68415C39O68411C46O68443C51O68458C63O68467C70O69106C77O69119C81O69140C85O69134C90O69180C94O69169C99O69423C104O69436C108O69430C113O69481C117O69485C121O69451C125O69499C129O69492C132O69506C136O69520C151O69524C158O69603C166O69603C172O69633C180O69638C187O69697C193O69717C207O69738C223O69745C233O69786C240O69760C243O69792C244O69902C249O69907C255O69938C260O69907C270O69961C276O69981C290O70002C300O70008C313O70035C321O70052C332O70035C341O70071C348O70091C355O70024C358O70097C359O70200C373O70204C380O70252C381O70268C388O70274C395O70285C416O70300C422O70300C440O70336C443O70322C446O70340C447O70367C455O70398C460O70367C466O70605C468O70610C474O70626C478O70630C485O70637C496O70658C503O70669C521O70685C532O70751C533O70767C540O70773C547O70778C555O70797C566O70778C584O70823C591O70829", + "inlined": "", + "fns": [] + } + }, + { + "name": "isBelowBreakLength node:internal/util/inspect:2008:28", + "type": "JS", + "kind": "Unopt", + "func": 376, + "tm": 87292, + "source": { + "script": 21, + "start": 66997, + "end": 67928, + "positions": "C0O67450C7O67457C11O67493C15O67484C19O67506C23O67500C28O67523C29O67536C30O67552C32O67566C36O67557C41O67593C47O67609C49O67624C54O67643C58O67624C63O67647C76O67675C78O67696C82O67700C93O67740C97O67734C102O67761C103O67774C104O67575C109O67539C113O67867C115O67879C122O67890C128O67890C134O67926", + "inlined": "", + "fns": [] + } + }, + { + "name": "join node:internal/util:466:14", + "type": "JS", + "kind": "Unopt", + "func": 377, + "tm": 87334, + "source": { + "script": 16, + "start": 13078, + "end": 13387, + "positions": "C0O13112C3O13129C9O13136C14O13174C18O13181C22O13203C24O13208C26O13208C31O13290C33O13303C43O13314C45O13321C52O13222C57O13190C61O13342C63O13355C73O13374C75O13385", + "inlined": "", + "fns": [] + } + } +], + "functions": [ + { + "name": " node:internal/main/run_main_module:1:1", + "codes": [ + 4271 + ] + }, + { + "name": " node:internal/main/run_main_module:1:1", + "codes": [ + 4272 + ] + }, + { + "name": "prepareMainThreadExecution node:internal/process/pre_execution:54:36", + "codes": [ + 4273 + ] + }, + { + "name": "prepareExecution node:internal/process/pre_execution:70:26", + "codes": [ + 4274 + ] + }, + { + "name": "refreshRuntimeOptions node:internal/process/pre_execution:177:31", + "codes": [ + 4275 + ] + }, + { + "name": "refreshOptions node:internal/options:39:24", + "codes": [ + 4276 + ] + }, + { + "name": "reconnectZeroFillToggle node:internal/buffer:1074:33", + "codes": [ + 4277 + ] + }, + { + "name": "patchProcessObject node:internal/process/pre_execution:188:28", + "codes": [ + 4278 + ] + }, + { + "name": "set node:internal/bootstrap/node:116:8", + "codes": [ + 4279 + ] + }, + { + "name": "resolve node:path:1095:10", + "codes": [ + 4280, + 4335 + ] + }, + { + "name": " node:path:1086:10", + "codes": [ + 4281 + ] + }, + { + "name": "wrappedCwd node:internal/bootstrap/switches/does_own_process_state:136:20", + "codes": [ + 4282 + ] + }, + { + "name": "normalizeString node:path:66:25", + "codes": [ + 4283, + 4285 + ] + }, + { + "name": "isPosixPathSeparator node:path:56:30", + "codes": [ + 4284, + 4289 + ] + }, + { + "name": "requireBuiltin node:internal/bootstrap/realm:414:24", + "codes": [ + 4286 + ] + }, + { + "name": "compileForInternalLoader node:internal/bootstrap/realm:377:27", + "codes": [ + 4287 + ] + }, + { + "name": "internalBinding node:internal/bootstrap/realm:185:45", + "codes": [ + 4288 + ] + }, + { + "name": "initializeGlobalConsole node:internal/console/constructor:690:33", + "codes": [ + 4290 + ] + }, + { + "name": "value node:internal/console/constructor:205:20", + "codes": [ + 4291 + ] + }, + { + "name": "value node:internal/console/constructor:235:20", + "codes": [ + 4292 + ] + }, + { + "name": "createWriteErrorHandler node:internal/console/constructor:357:33", + "codes": [ + 4293 + ] + }, + { + "name": "addReadOnlyProcessAlias node:internal/process/pre_execution:248:33", + "codes": [ + 4294 + ] + }, + { + "name": "getOptionValue node:internal/options:44:24", + "codes": [ + 4295, + 4337 + ] + }, + { + "name": "getCLIOptionsFromBinding node:internal/options:18:34", + "codes": [ + 4296, + 4340 + ] + }, + { + "name": "setupTraceCategoryState node:internal/process/pre_execution:460:33", + "codes": [ + 4297 + ] + }, + { + "name": "toggleTraceCategoryState node:internal/process/per_thread:410:34", + "codes": [ + 4298 + ] + }, + { + "name": "setupInspectorHooks node:internal/process/pre_execution:466:29", + "codes": [ + 4299 + ] + }, + { + "name": "setupWarningHandler node:internal/process/pre_execution:261:29", + "codes": [ + 4300 + ] + }, + { + "name": "setupUndici node:internal/process/pre_execution:283:21", + "codes": [ + 4301 + ] + }, + { + "name": "getEmbedderOptions node:internal/options:32:28", + "codes": [ + 4302 + ] + }, + { + "name": "lazyInterface node:internal/process/pre_execution:298:25", + "codes": [ + 4303 + ] + }, + { + "name": "setupWebCrypto node:internal/process/pre_execution:341:24", + "codes": [ + 4304 + ] + }, + { + "name": "setupCustomEvent node:internal/process/pre_execution:389:26", + "codes": [ + 4305 + ] + }, + { + "name": "setupCodeCoverage node:internal/process/pre_execution:374:27", + "codes": [ + 4306 + ] + }, + { + "name": "setupDebugEnv node:internal/process/pre_execution:420:23", + "codes": [ + 4307 + ] + }, + { + "name": "initializeDebugEnv node:internal/util/debuglog:21:28", + "codes": [ + 4308 + ] + }, + { + "name": "initializeReport node:internal/process/pre_execution:408:26", + "codes": [ + 4309 + ] + }, + { + "name": "initializePermission node:internal/process/pre_execution:573:30", + "codes": [ + 4310 + ] + }, + { + "name": " node:internal/process/pre_execution:626:53", + "codes": [ + 4311 + ] + }, + { + "name": "initializeSourceMapsHandlers node:internal/process/pre_execution:707:38", + "codes": [ + 4312 + ] + }, + { + "name": "setSourceMapsEnabled node:internal/source_map/source_map_cache:52:30", + "codes": [ + 4313 + ] + }, + { + "name": "validateBoolean node:internal/validators:216:25", + "codes": [ + 4314 + ] + }, + { + "name": "initializeDeprecations node:internal/process/pre_execution:484:32", + "codes": [ + 4315 + ] + }, + { + "name": "initializeDns node:internal/dns/utils:202:23", + "codes": [ + 4316 + ] + }, + { + "name": "setupSymbolDisposePolyfill node:internal/process/pre_execution:138:36", + "codes": [ + 4317 + ] + }, + { + "name": "assert node:internal/assert:11:16", + "codes": [ + 4318 + ] + }, + { + "name": "readPolicyFromDisk node:internal/process/pre_execution:635:28", + "codes": [ + 4319 + ] + }, + { + "name": "setupStacktracePrinterOnSigint node:internal/process/pre_execution:398:40", + "codes": [ + 4320 + ] + }, + { + "name": "initializeReportSignalHandlers node:internal/process/pre_execution:428:40", + "codes": [ + 4321 + ] + }, + { + "name": "initializeHeapSnapshotSignalHandlers node:internal/process/pre_execution:435:46", + "codes": [ + 4322 + ] + }, + { + "name": "setupChildProcessIpcChannel node:internal/process/pre_execution:545:37", + "codes": [ + 4323 + ] + }, + { + "name": "initializeClusterIPC node:internal/process/pre_execution:564:30", + "codes": [ + 4324 + ] + }, + { + "name": "runDeserializeCallbacks node:internal/v8/startup_snapshot:39:33", + "codes": [ + 4325 + ] + }, + { + "name": "setupUserModules node:internal/process/pre_execution:163:26", + "codes": [ + 4326 + ] + }, + { + "name": "initializeCJSLoader node:internal/process/pre_execution:685:29", + "codes": [ + 4327 + ] + }, + { + "name": "initializeCJS node:internal/modules/cjs/loader:383:23", + "codes": [ + 4328 + ] + }, + { + "name": "getCanBeRequiredByUsersWithoutSchemeList node:internal/bootstrap/realm:313:50", + "codes": [ + 4329 + ] + }, + { + "name": "desc.value node:internal/per_context/primordials:387:32", + "codes": [ + 4330 + ] + }, + { + "name": "SafeIterator node:internal/per_context/primordials:332:16", + "codes": [ + 4331 + ] + }, + { + "name": "next node:internal/per_context/primordials:335:9", + "codes": [ + 4332, + 4341 + ] + }, + { + "name": "initializeCjsConditions node:internal/modules/helpers:65:33", + "codes": [ + 4333 + ] + }, + { + "name": "Module._initPaths node:internal/modules/cjs/loader:1530:29", + "codes": [ + 4334 + ] + }, + { + "name": "SafeMap node:internal/per_context/primordials:413:16", + "codes": [ + 4336 + ] + }, + { + "name": "exposeLazyInterfaces node:internal/util:683:30", + "codes": [ + 4338 + ] + }, + { + "name": "defineLazyProperties node:internal/util:600:30", + "codes": [ + 4339 + ] + }, + { + "name": "SafeSet node:internal/per_context/primordials:426:16", + "codes": [ + 4342 + ] + }, + { + "name": "initializeESMLoader node:internal/process/pre_execution:690:29", + "codes": [ + 4343 + ] + }, + { + "name": "initializeESM node:internal/modules/esm/utils:192:23", + "codes": [ + 4344 + ] + }, + { + "name": "initializeDefaultConditions node:internal/modules/esm/utils:60:37", + "codes": [ + 4345 + ] + }, + { + "name": "get hasLoadedAnyUserCJSModule node:internal/modules/cjs/loader:72:32", + "codes": [ + 4346 + ] + }, + { + "name": "loadPreloadModules node:internal/process/pre_execution:722:28", + "codes": [ + 4347 + ] + }, + { + "name": "Module._preloadModules node:internal/modules/cjs/loader:1564:34", + "codes": [ + 4348 + ] + }, + { + "name": "Module node:internal/modules/cjs/loader:252:16", + "codes": [ + 4349 + ] + }, + { + "name": "dirname node:path:1278:10", + "codes": [ + 4350, + 4504 + ] + }, + { + "name": "setOwnProperty node:internal/util:723:24", + "codes": [ + 4351 + ] + }, + { + "name": "updateChildren node:internal/modules/cjs/loader:217:24", + "codes": [ + 4352 + ] + }, + { + "name": " node:internal/util:794:18", + "codes": [ + 4353 + ] + }, + { + "name": " node:internal/modules/cjs/loader:117:3", + "codes": [ + 4354 + ] + }, + { + "name": "Module._nodeModulePaths node:internal/modules/cjs/loader:793:37", + "codes": [ + 4355, + 4500 + ] + }, + { + "name": "internalRequire node:internal/modules/cjs/loader:167:25", + "codes": [ + 4356 + ] + }, + { + "name": "Module._load node:internal/modules/cjs/loader:950:24", + "codes": [ + 4357 + ] + }, + { + "name": "logger node:internal/util/debuglog:100:18", + "codes": [ + 4358 + ] + }, + { + "name": " node:internal/per_context/primordials:338:21", + "codes": [ + 4359 + ] + }, + { + "name": "debug node:internal/util/debuglog:81:15", + "codes": [ + 4360 + ] + }, + { + "name": "init node:internal/util/debuglog:77:16", + "codes": [ + 4361 + ] + }, + { + "name": "testEnabled node:internal/util/debuglog:31:19", + "codes": [ + 4362 + ] + }, + { + "name": "debuglogImpl node:internal/util/debuglog:54:22", + "codes": [ + 4363 + ] + }, + { + "name": " node:internal/modules/cjs/loader:357:66", + "codes": [ + 4364 + ] + }, + { + "name": "noop node:internal/util/debuglog:46:14", + "codes": [ + 4365, + 4607 + ] + }, + { + "name": "reportModuleToWatchMode node:internal/modules/cjs/loader:228:33", + "codes": [ + 4366 + ] + }, + { + "name": " node:internal/modules/cjs/loader:119:45", + "codes": [ + 4367 + ] + }, + { + "name": "Module._resolveFilename node:internal/modules/cjs/loader:1058:35", + "codes": [ + 4368 + ] + }, + { + "name": "normalizeRequirableId node:internal/bootstrap/realm:292:31", + "codes": [ + 4369 + ] + }, + { + "name": "canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36", + "codes": [ + 4370, + 4608 + ] + }, + { + "name": "Module._resolveLookupPaths node:internal/modules/cjs/loader:839:38", + "codes": [ + 4371 + ] + }, + { + "name": "trySelfParentPath node:internal/modules/cjs/loader:520:27", + "codes": [ + 4372 + ] + }, + { + "name": "trySelf node:internal/modules/cjs/loader:539:17", + "codes": [ + 4373 + ] + }, + { + "name": "readPackageScope node:internal/modules/package_json_reader:149:26", + "codes": [ + 4374 + ] + }, + { + "name": "isEnabled node:internal/process/permission:16:12", + "codes": [ + 4375 + ] + }, + { + "name": "readPackage node:internal/modules/package_json_reader:140:21", + "codes": [ + 4376, + 4609 + ] + }, + { + "name": "read node:internal/modules/package_json_reader:48:14", + "codes": [ + 4377 + ] + }, + { + "name": "toNamespacedPath node:path:1269:19", + "codes": [ + 4378, + 4501 + ] + }, + { + "name": "Module._findPath node:internal/modules/cjs/loader:610:28", + "codes": [ + 4379 + ] + }, + { + "name": "isAbsolute node:path:1159:13", + "codes": [ + 4380 + ] + }, + { + "name": "stat node:internal/modules/cjs/loader:185:14", + "codes": [ + 4381 + ] + }, + { + "name": "tryExtensions node:internal/modules/cjs/loader:487:23", + "codes": [ + 4382 + ] + }, + { + "name": "tryFile node:internal/modules/cjs/loader:472:17", + "codes": [ + 4383 + ] + }, + { + "name": "toRealPath node:internal/modules/helpers:54:20", + "codes": [ + 4384 + ] + }, + { + "name": "realpathSync node:fs:2611:22", + "codes": [ + 4385, + 4602 + ] + }, + { + "name": "getOptions node:internal/fs/utils:323:20", + "codes": [ + 4386 + ] + }, + { + "name": "assertEncoding node:internal/fs/utils:158:24", + "codes": [ + 4387 + ] + }, + { + "name": "toPathIfFileURL node:internal/url:1479:25", + "codes": [ + 4388 + ] + }, + { + "name": "isURL node:internal/url:755:15", + "codes": [ + 4389 + ] + }, + { + "name": " node:internal/fs/utils:697:38", + "codes": [ + 4390 + ] + }, + { + "name": " node:internal/fs/utils:366:35", + "codes": [ + 4391 + ] + }, + { + "name": "isUint8Array node:internal/util/types:13:22", + "codes": [ + 4392 + ] + }, + { + "name": "splitRoot node:fs:2567:33", + "codes": [ + 4393 + ] + }, + { + "name": "nextPart node:fs:2600:31", + "codes": [ + 4394, + 4502 + ] + }, + { + "name": "handleErrorFromBinding node:internal/fs/utils:349:32", + "codes": [ + 4395 + ] + }, + { + "name": "isFileType node:fs:206:20", + "codes": [ + 4396, + 4503 + ] + }, + { + "name": "encodeRealpathResult node:fs:2576:30", + "codes": [ + 4397 + ] + }, + { + "name": "Module.load node:internal/modules/cjs/loader:1194:33", + "codes": [ + 4398 + ] + }, + { + "name": "findLongestRegisteredExtension node:internal/modules/cjs/loader:502:40", + "codes": [ + 4399 + ] + }, + { + "name": "basename node:path:1309:11", + "codes": [ + 4400 + ] + }, + { + "name": "Module._extensions..js node:internal/modules/cjs/loader:1389:37", + "codes": [ + 4401 + ] + }, + { + "name": "readFileSync node:fs:446:22", + "codes": [ + 4402 + ] + }, + { + "name": "isEncoding node:buffer:569:40", + "codes": [ + 4403 + ] + }, + { + "name": "normalizeEncoding node:internal/util:212:27", + "codes": [ + 4404 + ] + }, + { + "name": "isInt32 node:internal/validators:43:17", + "codes": [ + 4405 + ] + }, + { + "name": " node:internal/fs/utils:727:42", + "codes": [ + 4406 + ] + }, + { + "name": "possiblyTransformPath node:internal/fs/utils:715:31", + "codes": [ + 4407 + ] + }, + { + "name": "stringToFlags node:internal/fs/utils:584:23", + "codes": [ + 4408 + ] + }, + { + "name": "Module._compile node:internal/modules/cjs/loader:1330:37", + "codes": [ + 4409 + ] + }, + { + "name": "wrapSafe node:internal/modules/cjs/loader:1257:18", + "codes": [ + 4410 + ] + }, + { + "name": "internalCompileFunction node:internal/vm:73:33", + "codes": [ + 4411 + ] + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", + "codes": [ + 4412 + ] + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", + "codes": [ + 4413 + ] + }, + { + "name": "registerImportModuleDynamically node:internal/vm:63:41", + "codes": [ + 4414 + ] + }, + { + "name": "importModuleDynamicallyWrap node:internal/vm/module:429:37", + "codes": [ + 4415 + ] + }, + { + "name": "registerModule node:internal/modules/esm/utils:135:24", + "codes": [ + 4416 + ] + }, + { + "name": "makeRequireFunction node:internal/modules/helpers:127:29", + "codes": [ + 4417 + ] + }, + { + "name": "lazyModule node:internal/modules/helpers:110:20", + "codes": [ + 4418 + ] + }, + { + "name": "require node:internal/modules/helpers:174:31", + "codes": [ + 4419 + ] + }, + { + "name": "Module.require node:internal/modules/cjs/loader:1227:36", + "codes": [ + 4420 + ] + }, + { + "name": "loadBuiltinModule node:internal/modules/helpers:93:27", + "codes": [ + 4421 + ] + }, + { + "name": "canBeRequiredByUsers node:internal/bootstrap/realm:284:30", + "codes": [ + 4422 + ] + }, + { + "name": " node:internal/modules/helpers:37:66", + "codes": [ + 4423 + ] + }, + { + "name": "compileForPublicLoader node:internal/bootstrap/realm:322:25", + "codes": [ + 4424 + ] + }, + { + "name": " node:cluster:1:1", + "codes": [ + 4425 + ] + }, + { + "name": " node:cluster:1:1", + "codes": [ + 4426 + ] + }, + { + "name": " node:internal/cluster/primary:1:1", + "codes": [ + 4427 + ] + }, + { + "name": " node:internal/cluster/primary:1:1", + "codes": [ + 4428 + ] + }, + { + "name": " node:child_process:1:1", + "codes": [ + 4429 + ] + }, + { + "name": " node:child_process:1:1", + "codes": [ + 4430 + ] + }, + { + "name": " node:internal/child_process:1:1", + "codes": [ + 4431 + ] + }, + { + "name": " node:internal/child_process:1:1", + "codes": [ + 4432 + ] + }, + { + "name": " node:internal/child_process:536:1", + "codes": [ + 4433 + ] + }, + { + "name": " node:net:1:1", + "codes": [ + 4434 + ] + }, + { + "name": " node:net:1:1", + "codes": [ + 4435 + ] + }, + { + "name": " node:stream:1:1", + "codes": [ + 4436 + ] + }, + { + "name": " node:stream:1:1", + "codes": [ + 4437 + ] + }, + { + "name": " node:internal/streams/operators:1:1", + "codes": [ + 4438 + ] + }, + { + "name": " node:internal/streams/operators:1:1", + "codes": [ + 4439 + ] + }, + { + "name": " node:internal/abort_controller:1:1", + "codes": [ + 4440 + ] + }, + { + "name": " node:internal/abort_controller:1:1", + "codes": [ + 4441 + ] + }, + { + "name": " node:internal/abort_controller:378:1", + "codes": [ + 4442 + ] + }, + { + "name": "SafeFinalizationRegistry node:internal/per_context/primordials:440:16", + "codes": [ + 4443 + ] + }, + { + "name": "defineEventHandler node:internal/event_target:1104:28", + "codes": [ + 4444 + ] + }, + { + "name": " node:internal/streams/end-of-stream:1:1", + "codes": [ + 4445 + ] + }, + { + "name": " node:internal/streams/end-of-stream:1:1", + "codes": [ + 4446 + ] + }, + { + "name": " node:internal/streams/utils:1:1", + "codes": [ + 4447 + ] + }, + { + "name": " node:internal/streams/utils:1:1", + "codes": [ + 4448 + ] + }, + { + "name": " node:internal/streams/compose:1:1", + "codes": [ + 4449 + ] + }, + { + "name": " node:internal/streams/compose:1:1", + "codes": [ + 4450 + ] + }, + { + "name": " node:internal/streams/pipeline:1:1", + "codes": [ + 4451 + ] + }, + { + "name": " node:internal/streams/pipeline:1:1", + "codes": [ + 4452 + ] + }, + { + "name": " node:internal/streams/destroy:1:1", + "codes": [ + 4453 + ] + }, + { + "name": " node:internal/streams/destroy:1:1", + "codes": [ + 4454 + ] + }, + { + "name": " node:internal/streams/duplex:1:1", + "codes": [ + 4455 + ] + }, + { + "name": " node:internal/streams/duplex:1:1", + "codes": [ + 4456 + ] + }, + { + "name": " node:internal/streams/readable:1:1", + "codes": [ + 4457 + ] + }, + { + "name": " node:internal/streams/readable:1:1", + "codes": [ + 4458 + ] + }, + { + "name": " node:internal/streams/legacy:1:1", + "codes": [ + 4459 + ] + }, + { + "name": " node:internal/streams/legacy:1:1", + "codes": [ + 4460 + ] + }, + { + "name": " node:internal/streams/add-abort-signal:1:1", + "codes": [ + 4461 + ] + }, + { + "name": " node:internal/streams/add-abort-signal:1:1", + "codes": [ + 4462 + ] + }, + { + "name": " node:internal/streams/buffer_list:1:1", + "codes": [ + 4463 + ] + }, + { + "name": " node:internal/streams/buffer_list:1:1", + "codes": [ + 4464 + ] + }, + { + "name": " node:internal/streams/state:1:1", + "codes": [ + 4465 + ] + }, + { + "name": " node:internal/streams/state:1:1", + "codes": [ + 4466 + ] + }, + { + "name": " node:string_decoder:1:1", + "codes": [ + 4467 + ] + }, + { + "name": " node:string_decoder:1:1", + "codes": [ + 4468 + ] + }, + { + "name": " node:internal/streams/from:1:1", + "codes": [ + 4469 + ] + }, + { + "name": " node:internal/streams/from:1:1", + "codes": [ + 4470 + ] + }, + { + "name": "makeBitMapDescriptor node:internal/streams/readable:120:30", + "codes": [ + 4471, + 4506 + ] + }, + { + "name": " node:internal/streams/writable:1:1", + "codes": [ + 4472 + ] + }, + { + "name": " node:internal/streams/writable:1:1", + "codes": [ + 4473 + ] + }, + { + "name": "makeBitMapDescriptor node:internal/streams/writable:116:30", + "codes": [ + 4474, + 4507 + ] + }, + { + "name": " node:stream/promises:1:1", + "codes": [ + 4475 + ] + }, + { + "name": " node:stream/promises:1:1", + "codes": [ + 4476 + ] + }, + { + "name": " node:internal/streams/transform:1:1", + "codes": [ + 4477 + ] + }, + { + "name": " node:internal/streams/transform:1:1", + "codes": [ + 4478 + ] + }, + { + "name": " node:internal/streams/passthrough:1:1", + "codes": [ + 4479 + ] + }, + { + "name": " node:internal/streams/passthrough:1:1", + "codes": [ + 4480 + ] + }, + { + "name": " node:internal/stream_base_commons:1:1", + "codes": [ + 4481 + ] + }, + { + "name": " node:internal/stream_base_commons:1:1", + "codes": [ + 4482 + ] + }, + { + "name": " node:diagnostics_channel:1:1", + "codes": [ + 4483 + ] + }, + { + "name": " node:diagnostics_channel:1:1", + "codes": [ + 4484 + ] + }, + { + "name": " node:diagnostics_channel:35:1", + "codes": [ + 4485 + ] + }, + { + "name": "WeakRefMap node:diagnostics_channel:35:1", + "codes": [ + 4486 + ] + }, + { + "name": "channel node:diagnostics_channel:213:17", + "codes": [ + 4487 + ] + }, + { + "name": "get node:diagnostics_channel:45:6", + "codes": [ + 4488 + ] + }, + { + "name": "Channel node:diagnostics_channel:168:14", + "codes": [ + 4489 + ] + }, + { + "name": "set node:diagnostics_channel:40:6", + "codes": [ + 4490 + ] + }, + { + "name": "WeakReference node:internal/util:835:14", + "codes": [ + 4491 + ] + }, + { + "name": "SafeWeakRef node:internal/per_context/primordials:447:16", + "codes": [ + 4492 + ] + }, + { + "name": " node:internal/perf/observe:1:1", + "codes": [ + 4493 + ] + }, + { + "name": " node:internal/perf/observe:1:1", + "codes": [ + 4494 + ] + }, + { + "name": " node:internal/perf/observe:243:1", + "codes": [ + 4495 + ] + }, + { + "name": " node:internal/perf/performance_entry:1:1", + "codes": [ + 4496 + ] + }, + { + "name": " node:internal/perf/performance_entry:1:1", + "codes": [ + 4497 + ] + }, + { + "name": "protoGetter node:net:866:21", + "codes": [ + 4498, + 4499 + ] + }, + { + "name": "validateString node:internal/validators:160:24", + "codes": [ + 4505 + ] + }, + { + "name": "getDeprecationWarningEmitter node:internal/util:111:38", + "codes": [ + 4508 + ] + }, + { + "name": " node:dgram:1:1", + "codes": [ + 4509 + ] + }, + { + "name": " node:dgram:1:1", + "codes": [ + 4510 + ] + }, + { + "name": " node:internal/dgram:1:1", + "codes": [ + 4511 + ] + }, + { + "name": " node:internal/dgram:1:1", + "codes": [ + 4512 + ] + }, + { + "name": " node:internal/socket_list:1:1", + "codes": [ + 4513 + ] + }, + { + "name": " node:internal/socket_list:1:1", + "codes": [ + 4514 + ] + }, + { + "name": "customPromiseExecFunction node:child_process:239:35", + "codes": [ + 4515 + ] + }, + { + "name": " node:internal/cluster/round_robin_handle:1:1", + "codes": [ + 4516 + ] + }, + { + "name": " node:internal/cluster/round_robin_handle:1:1", + "codes": [ + 4517 + ] + }, + { + "name": " node:internal/cluster/utils:1:1", + "codes": [ + 4518 + ] + }, + { + "name": " node:internal/cluster/utils:1:1", + "codes": [ + 4519 + ] + }, + { + "name": " node:internal/cluster/shared_handle:1:1", + "codes": [ + 4520 + ] + }, + { + "name": " node:internal/cluster/shared_handle:1:1", + "codes": [ + 4521 + ] + }, + { + "name": " node:internal/cluster/worker:1:1", + "codes": [ + 4522 + ] + }, + { + "name": " node:internal/cluster/worker:1:1", + "codes": [ + 4523 + ] + }, + { + "name": "getESMFacade node:internal/bootstrap/realm:340:15", + "codes": [ + 4524 + ] + }, + { + "name": " node:internal/bootstrap/realm:351:15", + "codes": [ + 4525 + ] + }, + { + "name": "syncExports node:internal/bootstrap/realm:365:14", + "codes": [ + 4526, + 4605 + ] + }, + { + "name": "getOwn node:internal/bootstrap/realm:202:16", + "codes": [ + 4527, + 4604 + ] + }, + { + "name": " node:internal/modules/cjs/loader:122:3", + "codes": [ + 4528 + ] + }, + { + "name": " node:internal/process/esm_loader:1:1", + "codes": [ + 4529 + ] + }, + { + "name": " node:internal/process/esm_loader:1:1", + "codes": [ + 4530 + ] + }, + { + "name": " node:internal/modules/esm/loader:1:1", + "codes": [ + 4531 + ] + }, + { + "name": " node:internal/modules/esm/loader:1:1", + "codes": [ + 4532 + ] + }, + { + "name": " node:internal/modules/esm/loader:456:1", + "codes": [ + 4533 + ] + }, + { + "name": " node:internal/modules/esm/loader:83:1", + "codes": [ + 4534 + ] + }, + { + "name": "get esmLoader node:internal/process/esm_loader:17:16", + "codes": [ + 4535 + ] + }, + { + "name": "createModuleLoader node:internal/modules/esm/loader:530:28", + "codes": [ + 4536 + ] + }, + { + "name": "isLoaderWorker node:internal/modules/esm/utils:205:24", + "codes": [ + 4537 + ] + }, + { + "name": "ModuleLoader node:internal/modules/esm/loader:132:14", + "codes": [ + 4538 + ] + }, + { + "name": "getDefaultConditions node:internal/modules/esm/utils:41:30", + "codes": [ + 4539 + ] + }, + { + "name": "newResolveCache node:internal/modules/esm/loader:35:25", + "codes": [ + 4540 + ] + }, + { + "name": " node:internal/modules/esm/module_map:1:1", + "codes": [ + 4541 + ] + }, + { + "name": " node:internal/modules/esm/module_map:1:1", + "codes": [ + 4542 + ] + }, + { + "name": " node:internal/modules/esm/assert:1:1", + "codes": [ + 4543 + ] + }, + { + "name": " node:internal/modules/esm/assert:1:1", + "codes": [ + 4544 + ] + }, + { + "name": " node:internal/modules/esm/assert:44:3", + "codes": [ + 4545 + ] + }, + { + "name": "ResolveCache node:internal/modules/esm/module_map:26:14", + "codes": [ + 4546 + ] + }, + { + "name": "newLoadCache node:internal/modules/esm/loader:44:22", + "codes": [ + 4547 + ] + }, + { + "name": "LoadCache node:internal/modules/esm/module_map:90:14", + "codes": [ + 4548 + ] + }, + { + "name": "getTranslators node:internal/modules/esm/loader:53:24", + "codes": [ + 4549 + ] + }, + { + "name": " node:internal/modules/esm/translators:1:1", + "codes": [ + 4550 + ] + }, + { + "name": " node:internal/modules/esm/translators:1:1", + "codes": [ + 4551 + ] + }, + { + "name": "setCustomizations node:internal/modules/esm/loader:187:20", + "codes": [ + 4552 + ] + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", + "codes": [ + 4553 + ] + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", + "codes": [ + 4554 + ] + }, + { + "name": "get BlockList node:net:2373:16", + "codes": [ + 4555 + ] + }, + { + "name": " node:internal/blocklist:1:1", + "codes": [ + 4556 + ] + }, + { + "name": " node:internal/blocklist:1:1", + "codes": [ + 4557 + ] + }, + { + "name": " node:internal/socketaddress:1:1", + "codes": [ + 4558 + ] + }, + { + "name": " node:internal/socketaddress:1:1", + "codes": [ + 4559 + ] + }, + { + "name": "get SocketAddress node:net:2377:20", + "codes": [ + 4560 + ] + }, + { + "name": " node:worker_threads:1:1", + "codes": [ + 4561 + ] + }, + { + "name": " node:worker_threads:1:1", + "codes": [ + 4562 + ] + }, + { + "name": " node:internal/worker:1:1", + "codes": [ + 4563 + ] + }, + { + "name": " node:internal/worker:1:1", + "codes": [ + 4564 + ] + }, + { + "name": " node:internal/perf/event_loop_utilization:1:1", + "codes": [ + 4565 + ] + }, + { + "name": " node:internal/perf/event_loop_utilization:1:1", + "codes": [ + 4566 + ] + }, + { + "name": " node:internal/worker/io:1:1", + "codes": [ + 4567 + ] + }, + { + "name": " node:internal/worker/io:1:1", + "codes": [ + 4568 + ] + }, + { + "name": " node:internal/error_serdes:1:1", + "codes": [ + 4569 + ] + }, + { + "name": " node:internal/error_serdes:1:1", + "codes": [ + 4570 + ] + }, + { + "name": "Socket node:net:353:16", + "codes": [ + 4571 + ] + }, + { + "name": "Duplex node:internal/streams/duplex:54:16", + "codes": [ + 4572 + ] + }, + { + "name": "Readable node:internal/streams/readable:314:18", + "codes": [ + 4573 + ] + }, + { + "name": "Stream node:internal/streams/legacy:10:16", + "codes": [ + 4574 + ] + }, + { + "name": "ReadableState node:internal/streams/readable:253:23", + "codes": [ + 4575 + ] + }, + { + "name": "getHighWaterMark node:internal/streams/state:32:26", + "codes": [ + 4576 + ] + }, + { + "name": "highWaterMarkFrom node:internal/streams/state:14:27", + "codes": [ + 4577 + ] + }, + { + "name": "get node:internal/streams/readable:123:8", + "codes": [ + 4578 + ] + }, + { + "name": "getDefaultHighWaterMark node:internal/streams/state:19:33", + "codes": [ + 4579 + ] + }, + { + "name": "BufferList node:internal/streams/buffer_list:14:14", + "codes": [ + 4580 + ] + }, + { + "name": "construct node:internal/streams/destroy:219:19", + "codes": [ + 4581 + ] + }, + { + "name": "Writable node:internal/streams/writable:375:18", + "codes": [ + 4582 + ] + }, + { + "name": "WritableState node:internal/streams/writable:292:23", + "codes": [ + 4583 + ] + }, + { + "name": "get node:internal/streams/writable:119:8", + "codes": [ + 4584 + ] + }, + { + "name": "resetBuffer node:internal/streams/writable:357:21", + "codes": [ + 4585 + ] + }, + { + "name": "set node:internal/streams/readable:124:8", + "codes": [ + 4586 + ] + }, + { + "name": "createHandle node:net:165:22", + "codes": [ + 4587 + ] + }, + { + "name": " node:internal/validators:114:3", + "codes": [ + 4588 + ] + }, + { + "name": "guessHandleType node:internal/util:826:25", + "codes": [ + 4589 + ] + }, + { + "name": "set node:net:2301:6", + "codes": [ + 4590 + ] + }, + { + "name": "get node:net:2300:6", + "codes": [ + 4591 + ] + }, + { + "name": "Readable.on node:internal/streams/readable:1103:33", + "codes": [ + 4592 + ] + }, + { + "name": "initSocketHandle node:net:309:26", + "codes": [ + 4593 + ] + }, + { + "name": "undestroy node:internal/streams/destroy:154:19", + "codes": [ + 4594 + ] + }, + { + "name": "set node:internal/streams/readable:177:8", + "codes": [ + 4595 + ] + }, + { + "name": "set node:internal/streams/writable:120:8", + "codes": [ + 4596 + ] + }, + { + "name": "set node:internal/streams/writable:205:8", + "codes": [ + 4597 + ] + }, + { + "name": "get node:internal/streams/writable:218:8", + "codes": [ + 4598 + ] + }, + { + "name": "getNewAsyncId node:net:184:23", + "codes": [ + 4599 + ] + }, + { + "name": "get node:internal/bootstrap/node:371:8", + "codes": [ + 4600 + ] + }, + { + "name": "get /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:19:10", + "codes": [ + 4601 + ] + }, + { + "name": "deprecate node:internal/util:156:19", + "codes": [ + 4603 + ] + }, + { + "name": "SafeWeakMap node:internal/per_context/primordials:419:16", + "codes": [ + 4606 + ] + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", + "codes": [ + 4610 + ] + }, + { + "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", + "codes": [ + 4611 + ] + }, + { + "name": "initializeFrozenIntrinsics node:internal/process/pre_execution:714:36", + "codes": [ + 4612 + ] + }, + { + "name": "markBootstrapComplete node:internal/process/pre_execution:735:31", + "codes": [ + 4613 + ] + }, + { + "name": "executeUserEntryPoint node:internal/modules/run_main:127:31", + "codes": [ + 4614 + ] + }, + { + "name": "resolveMainPath node:internal/modules/run_main:15:25", + "codes": [ + 4615 + ] + }, + { + "name": "tryPackage node:internal/modules/cjs/loader:429:20", + "codes": [ + 4616 + ] + }, + { + "name": "reportModuleNotFoundToWatchMode node:internal/modules/cjs/loader:239:41", + "codes": [ + 4617 + ] + }, + { + "name": "shouldUseESMLoader node:internal/modules/run_main:52:28", + "codes": [ + 4618 + ] + }, + { + "name": " node:internal/process/execution:169:10", + "codes": [ + 4619 + ] + }, + { + "name": "clearDefaultTriggerAsyncId node:internal/async_hooks:442:36", + "codes": [ + 4620 + ] + }, + { + "name": "get node:internal/bootstrap/node:100:8", + "codes": [ + 4621 + ] + }, + { + "name": " node:internal/validators:93:3", + "codes": [ + 4622 + ] + }, + { + "name": "beforeInspector node:internal/errors:833:18", + "codes": [ + 4623 + ] + }, + { + "name": "prepareStackTrace node:internal/errors:91:27", + "codes": [ + 4624 + ] + }, + { + "name": "maybeOverridePrepareStackTrace node:internal/errors:136:40", + "codes": [ + 4625 + ] + }, + { + "name": "afterInspector node:internal/errors:847:17", + "codes": [ + 4626 + ] + }, + { + "name": "lazyInternalUtilInspect node:internal/errors:191:33", + "codes": [ + 4627 + ] + }, + { + "name": "lazyUtilColors node:internal/errors:197:24", + "codes": [ + 4628 + ] + }, + { + "name": " node:internal/util/colors:1:1", + "codes": [ + 4629 + ] + }, + { + "name": " node:internal/util/colors:1:1", + "codes": [ + 4630 + ] + }, + { + "name": "refresh node:internal/util/colors:25:10", + "codes": [ + 4631 + ] + }, + { + "name": "getStderr node:internal/bootstrap/switches/is_main_thread:170:19", + "codes": [ + 4632 + ] + }, + { + "name": "createWritableStdioStream node:internal/bootstrap/switches/is_main_thread:47:35", + "codes": [ + 4633 + ] + }, + { + "name": " node:tty:1:1", + "codes": [ + 4634 + ] + }, + { + "name": " node:tty:1:1", + "codes": [ + 4635 + ] + }, + { + "name": " node:internal/tty:1:1", + "codes": [ + 4636 + ] + }, + { + "name": " node:internal/tty:1:1", + "codes": [ + 4637 + ] + }, + { + "name": "WriteStream node:tty:84:21", + "codes": [ + 4638 + ] + }, + { + "name": "addCleanup node:internal/bootstrap/switches/is_main_thread:142:20", + "codes": [ + 4639 + ] + }, + { + "name": "shouldColorize node:internal/util/colors:17:17", + "codes": [ + 4640 + ] + }, + { + "name": "getColorDepth node:internal/tty:106:23", + "codes": [ + 4641 + ] + }, + { + "name": "get node:internal/util/inspect:370:6", + "codes": [ + 4642 + ] + }, + { + "name": "inspect node:internal/util/inspect:309:17", + "codes": [ + 4643 + ] + }, + { + "name": "formatValue node:internal/util/inspect:765:21", + "codes": [ + 4644 + ] + }, + { + "name": "formatRaw node:internal/util/inspect:843:19", + "codes": [ + 4645 + ] + }, + { + "name": "getConstructorName node:internal/util/inspect:587:28", + "codes": [ + 4646 + ] + }, + { + "name": "isInstanceof node:internal/util/inspect:579:22", + "codes": [ + 4647 + ] + }, + { + "name": "getKeys node:internal/util/inspect:708:17", + "codes": [ + 4648 + ] + }, + { + "name": "isError node:internal/util:98:17", + "codes": [ + 4649 + ] + }, + { + "name": "formatError node:internal/util/inspect:1367:21", + "codes": [ + 4650 + ] + }, + { + "name": "getStackString node:internal/util/inspect:1239:24", + "codes": [ + 4651 + ] + }, + { + "name": "removeDuplicateErrorKeys node:internal/util/inspect:1303:34", + "codes": [ + 4652 + ] + }, + { + "name": "improveStack node:internal/util/inspect:1270:22", + "codes": [ + 4653 + ] + }, + { + "name": "getPrefix node:internal/util/inspect:693:19", + "codes": [ + 4654 + ] + }, + { + "name": "getStackFrames node:internal/util/inspect:1243:24", + "codes": [ + 4655 + ] + }, + { + "name": "safeGetCWD node:internal/util/inspect:1357:20", + "codes": [ + 4656 + ] + }, + { + "name": "exists node:internal/bootstrap/realm:280:16", + "codes": [ + 4657 + ] + }, + { + "name": "stylizeWithColor node:internal/util/inspect:560:26", + "codes": [ + 4658 + ] + }, + { + "name": "get node:internal/util/inspect:436:8", + "codes": [ + 4659 + ] + }, + { + "name": "getEmptyFormatArray node:internal/util/inspect:575:29", + "codes": [ + 4661 + ] + }, + { + "name": "formatProperty node:internal/util/inspect:1936:24", + "codes": [ + 4662 + ] + }, + { + "name": "isUndetectableObject node:internal/util/inspect:176:30", + "codes": [ + 4663 + ] + }, + { + "name": "formatPrimitive node:internal/util/inspect:1620:25", + "codes": [ + 4664 + ] + }, + { + "name": "strEscape node:internal/util/inspect:495:19", + "codes": [ + 4665 + ] + }, + { + "name": "addQuotes node:internal/util/inspect:478:19", + "codes": [ + 4666 + ] + }, + { + "name": "reduceToSingleString node:internal/util/inspect:2032:30", + "codes": [ + 4668 + ] + }, + { + "name": "isBelowBreakLength node:internal/util/inspect:2008:28", + "codes": [ + 4669 + ] + }, + { + "name": "join node:internal/util:466:14", + "codes": [ + 4670 + ] + } +], + "ticks": [ + { + "tm": 1250, + "vm": 6, + "s": [ + -1, + 6802760048 + ] +}, + { + "tm": 2459, + "vm": 6, + "s": [ + -1, + 6801022380 + ] +}, + { + "tm": 8584, + "vm": 6, + "s": [ + -1, + 6802776260 + ] +}, + { + "tm": 8584, + "vm": 6, + "s": [ + -1, + 6801726088 + ] +}, + { + "tm": 8584, + "vm": 6, + "s": [ + -1, + 6802772084 + ] +}, + { + "tm": 8584, + "vm": 6, + "s": [ + -1, + 6802776260 + ] +}, + { + "tm": 11167, + "vm": 6, + "s": [ + -1, + 6802776260 + ] +}, + { + "tm": 11167, + "vm": 6, + "s": [ + -1, + 6802776260 + ] +}, + { + "tm": 11417, + "vm": 6, + "s": [ + -1, + 6802776260 + ] +}, + { + "tm": 12750, + "vm": 6, + "s": [ + -1, + 6802776260 + ] +}, + { + "tm": 13917, + "vm": 5, + "s": [ + -1, + 4313227908 + ] +}, + { + "tm": 15167, + "vm": 5, + "s": [ + -1, + 4311747284 + ] +}, + { + "tm": 16584, + "vm": 3, + "s": [ + -1, + 6802229808, + -1, + 0, + 4272, + 38 + ] +}, + { + "tm": 17875, + "vm": 3, + "s": [ + -1, + 6802762708, + -1, + 0, + 4274, + 26, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 20375, + "vm": 3, + "s": [ + -1, + 4305033580, + -1, + 0, + 4278, + 213, + 4274, + 32, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 20375, + "vm": 3, + "s": [ + -1, + 6801563056, + -1, + 0, + 4278, + 213, + 4274, + 32, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 21584, + "vm": 0, + "s": [ + 0, + 13083792, + -1, + 0, + 4283, + 433, + 4280, + 151, + 4278, + 213, + 4274, + 32, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 22709, + "vm": 3, + "s": [ + -1, + 6802776260, + -1, + 0, + 4294, + 21, + 4278, + 282, + 4274, + 32, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 23959, + "vm": 2, + "s": [ + -1, + 6801003636, + -1, + 0, + 4274, + 94, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 25625, + "vm": 3, + "s": [ + -1, + 4307702276, + -1, + 0, + 4274, + 125, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 27917, + "vm": 3, + "s": [ + -1, + 6803004388, + -1, + 0, + 4327, + 16, + 4326, + 13, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 27917, + "vm": 3, + "s": [ + -1, + 6802229904, + -1, + 0, + 4327, + 16, + 4326, + 13, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 29125, + "vm": 3, + "s": [ + -1, + 6802031352, + -1, + 0, + 4328, + 36, + 4327, + 16, + 4326, + 13, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 30334, + "vm": 3, + "s": [ + -1, + 4312121032, + -1, + 0, + 4343, + 16, + 4326, + 19, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 31917, + "vm": 3, + "s": [ + -1, + 6802229784, + -1, + 0, + 4368, + 625, + 4357, + 222, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 35750, + "vm": 3, + "s": [ + -1, + 6803002892, + -1, + 0, + 4384, + 35, + 4383, + 57, + 4382, + 23, + 4379, + 764, + 4368, + 725, + 4357, + 222, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 35792, + "vm": 3, + "s": [ + -1, + 4305033788, + -1, + 0, + 4384, + 35, + 4383, + 57, + 4382, + 23, + 4379, + 764, + 4368, + 725, + 4357, + 222, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 35792, + "vm": 3, + "s": [ + -1, + 6802229844, + -1, + 0, + 4384, + 35, + 4383, + 57, + 4382, + 23, + 4379, + 764, + 4368, + 725, + 4357, + 222, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 36792, + "vm": 3, + "s": [ + -1, + 6801674552, + -1, + 0, + 4385, + 6, + 4384, + 35, + 4383, + 57, + 4382, + 23, + 4379, + 764, + 4368, + 725, + 4357, + 222, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 38417, + "vm": 3, + "s": [ + -1, + 6803004504, + -1, + 0, + 4385, + 18, + 4384, + 35, + 4383, + 57, + 4382, + 23, + 4379, + 764, + 4368, + 725, + 4357, + 222, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 39209, + "vm": 3, + "s": [ + -1, + 4312121048, + -1, + 0, + 4387, + 14, + 4386, + 104, + 4402, + 10, + 4401, + 60, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 40709, + "vm": 3, + "s": [ + -1, + 6801674704, + -1, + 0, + 4387, + 14, + 4386, + 104, + 4402, + 10, + 4401, + 60, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 42042, + "vm": 3, + "s": [ + -1, + 6802762708, + -1, + 0, + 4414, + 37, + 4411, + 110, + 4410, + 196, + 4409, + 69, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 43000, + "vm": 2, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 44292, + "vm": 5, + "s": [ + -1, + 4305411568, + -1, + 0, + 4288, + 324, + 4430, + 521, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 45834, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 48959, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 48959, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 49417, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 50667, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4439, + 166, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 51917, + "vm": 3, + "s": [ + -1, + 6802229844, + -1, + 0, + 4441, + 857, + 4287, + 784, + 4286, + 660, + 4439, + 166, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 53167, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4439, + 288, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 54584, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4452, + 224, + 4287, + 784, + 4286, + 660, + 4450, + 50, + 4287, + 784, + 4286, + 660, + 4439, + 288, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 56834, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4456, + 65, + 4287, + 784, + 4286, + 660, + 4452, + 224, + 4287, + 784, + 4286, + 660, + 4450, + 50, + 4287, + 784, + 4286, + 660, + 4439, + 288, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 56834, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4456, + 65, + 4287, + 784, + 4286, + 660, + 4452, + 224, + 4287, + 784, + 4286, + 660, + 4450, + 50, + 4287, + 784, + 4286, + 660, + 4439, + 288, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 58167, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4458, + 718, + 4287, + 784, + 4286, + 660, + 4456, + 65, + 4287, + 784, + 4286, + 660, + 4452, + 224, + 4287, + 784, + 4286, + 660, + 4450, + 50, + 4287, + 784, + 4286, + 660, + 4439, + 288, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 60209, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4456, + 77, + 4287, + 784, + 4286, + 660, + 4452, + 224, + 4287, + 784, + 4286, + 660, + 4450, + 50, + 4287, + 784, + 4286, + 660, + 4439, + 288, + 4287, + 784, + 4286, + 660, + 4437, + 61, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 60917, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4437, + 842, + 4287, + 784, + 4286, + 660, + 4435, + 677, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 62209, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4435, + 1432, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 63334, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4435, + 1479, + 4287, + 784, + 4286, + 660, + 4432, + 502, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 65417, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4432, + 514, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 65625, + "vm": 6, + "s": [ + -1, + 4305411568, + -1, + 0, + 4288, + 324, + 4512, + 86, + 4287, + 784, + 4286, + 660, + 4510, + 359, + 4287, + 784, + 4286, + 660, + 4432, + 514, + 4287, + 784, + 4286, + 660, + 4430, + 695, + 4287, + 784, + 4286, + 660, + 4428, + 226, + 4287, + 784, + 4286, + 660, + 4426, + 37, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4413, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 66917, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4528, + 6, + 4353, + 13, + 4398, + 160, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 68125, + "vm": 2, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4540, + 6, + 4534, + 47, + 4538, + 17, + 4536, + 187, + 4535, + 15, + 4528, + 11, + 4353, + 13, + 4398, + 160, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 69625, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4549, + 6, + 4534, + 72, + 4538, + 17, + 4536, + 187, + 4535, + 15, + 4528, + 11, + 4353, + 13, + 4398, + 160, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 70667, + "vm": 0, + "s": [ + 0, + 2333696, + 0, + 2468680, + 4527, + 26, + 4526, + 67, + 4525, + 10, + -1, + 4305359032, + 4524, + 159, + 4424, + 127, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4554, + 3, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 71917, + "vm": 2, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4564, + 543, + 4287, + 784, + 4286, + 660, + 4562, + 3, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4554, + 16, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 73209, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4564, + 627, + 4287, + 784, + 4286, + 660, + 4562, + 3, + 4287, + 784, + 4424, + 60, + 4421, + 58, + 4357, + 333, + 4420, + 76, + 4419, + 8, + 4554, + 16, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 74542, + "vm": 0, + "s": [ + 0, + 1556772, + 4593, + 14, + 4571, + 800, + 4554, + 65, + 4409, + 423, + 4401, + 486, + 4398, + 144, + 4357, + 469, + 4356, + 76, + 4348, + 139, + 4347, + 47, + 4326, + 58, + 4274, + 303, + 4273, + 40, + 4272, + 38 + ] +}, + { + "tm": 75750, + "vm": 0, + "s": [ + 0, + 356288, + -1, + 0, + 4368, + 860, + 4357, + 222, + 4614, + 87, + 4272, + 113 + ] +}, + { + "tm": 79375, + "vm": 3, + "s": [ + -1, + 4307702276 + ] +}, + { + "tm": 79375, + "vm": 3, + "s": [ + -1, + 4310254740 + ] +}, + { + "tm": 79500, + "vm": 2, + "s": [ + -1, + 4312526344 + ] +}, + { + "tm": 80834, + "vm": 3, + "s": [ + -1, + 4305491284, + -1, + 0, + 4287, + 580, + 4286, + 660, + 4635, + 140, + 4287, + 784, + 4286, + 660, + 4633, + 48, + 4632, + 17, + 4631, + 3, + 4630, + 72, + 4287, + 784, + 4286, + 660, + 4628, + 14, + 4626, + 128 + ] +}, + { + "tm": 82000, + "vm": 6, + "s": [ + -1, + 4306504152, + -1, + 0, + 4638, + 65, + 4633, + 60, + 4632, + 17, + 4631, + 3, + 4630, + 72, + 4287, + 784, + 4286, + 660, + 4628, + 14, + 4626, + 128 + ] +}, + { + "tm": 85334, + "vm": 3, + "s": [ + -1, + 4305033668, + -1, + 0, + 4626, + 174 + ] +}, + { + "tm": 85334, + "vm": 3, + "s": [ + -1, + 6803002892, + -1, + 0, + 4626, + 174 + ] +}, + { + "tm": 85917, + "vm": 3, + "s": [ + -1, + 6802385252, + -1, + 0, + 4644, + 485, + 4643, + 390, + 4626, + 196 + ] +}, + { + "tm": 87084, + "vm": 3, + "s": [ + -1, + 6802776260, + -1, + 0, + 4665, + 127, + 4664, + 249, + 4644, + 37, + 4662, + 136, + 4645, + 2572, + 4644, + 485, + 4643, + 390, + 4626, + 196 + ] +} + ], + "scripts": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "url": "node:internal/assert", + "source": "'use strict';\n\nlet error;\nfunction lazyError() {\n if (!error) {\n error = require('internal/errors').codes.ERR_INTERNAL_ASSERTION;\n }\n return error;\n}\n\nfunction assert(value, message) {\n if (!value) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n }\n}\n\nfunction fail(message) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n}\n\nassert.fail = fail;\n\nmodule.exports = assert;\n", + "name": "assert", + "lineToColumn": {}, + "_entries": [], + "_sourceMapState": "unknown", + "id": 11, + "sourcePositions": [] + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "url": "/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js", + "source": "const cluster = require('cluster')\n\ncluster.on('fork', () => {\n throw new Error('0x does not support clustering.')\n})\n", + "name": "no-cluster.js", + "lineToColumn": {}, + "_entries": [], + "_sourceMapState": "unknown", + "id": 81, + "sourcePositions": [] + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "url": "/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js", + "source": "'use strict'\nconst net = require('net')\n\nlet isWorker = false\ntry {\n // Skip redirecting stdout in Worker threads.\n isWorker = !require('worker_threads').isMainThread\n} catch (e) {}\n\nif (!isWorker) {\n const socket = new net.Socket({\n fd: 3,\n readable: false,\n writable: true\n })\n Object.defineProperty(process, 'stdout', {\n configurable: true,\n enumerable: true,\n get: () => socket\n })\n Object.defineProperty(process.stdout, 'fd', {\n value: socket._handle.fd\n })\n}\n", + "name": "redir-stdout.js", + "lineToColumn": {}, + "_entries": [], + "_sourceMapState": "unknown", + "id": 123, + "sourcePositions": [] + }, + null, + null, + { + "url": "node:worker_threads", + "source": "'use strict';\n\nconst {\n isMainThread,\n SHARE_ENV,\n resourceLimits,\n setEnvironmentData,\n getEnvironmentData,\n threadId,\n Worker,\n} = require('internal/worker');\n\nconst {\n MessagePort,\n MessageChannel,\n moveMessagePortToContext,\n receiveMessageOnPort,\n BroadcastChannel,\n} = require('internal/worker/io');\n\nconst {\n markAsUntransferable,\n} = require('internal/buffer');\n\nmodule.exports = {\n isMainThread,\n MessagePort,\n MessageChannel,\n markAsUntransferable,\n moveMessagePortToContext,\n receiveMessageOnPort,\n resourceLimits,\n threadId,\n SHARE_ENV,\n Worker,\n parentPort: null,\n workerData: null,\n BroadcastChannel,\n setEnvironmentData,\n getEnvironmentData,\n};\n", + "name": "node:worker_threads", + "lineToColumn": {}, + "_entries": [], + "_sourceMapState": "unknown", + "id": 126, + "sourcePositions": [] + }, + null, + null, + null, + null, + { + "url": "/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js", + "source": "'use strict'\n\nprocess.on('SIGINT', process.exit)\nprocess.on('SIGTERM', process.exit)\n", + "name": "soft-exit.js", + "lineToColumn": {}, + "_entries": [], + "_sourceMapState": "unknown", + "id": 131, + "sourcePositions": [] + } +]} diff --git a/53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready b/53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready new file mode 100644 index 0000000000..12554f8086 --- /dev/null +++ b/53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready @@ -0,0 +1,3218 @@ +v8-version,11,3,244,8,-node.25,0 +v8-platform,macos,macos +shared-library,/Users/aditi.khare/.local/share/nvm/v20.10.0/bin/node,0x1012a4000,0x10286bc60,9764864 +shared-library,/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation,0x1aabda0b0,0x1aadc90a4,356089856 +shared-library,/usr/lib/libobjc.A.dylib,0x1aa79a000,0x1aa7d73d0,356089856 +shared-library,/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal,0x1ae2adacc,0x1ae2e5a90,356089856 +shared-library,/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation,0x1abd2f7e0,0x1ac5c4e08,356089856 +shared-library,/usr/lib/liboah.dylib,0x1b77c35bc,0x1b77c8cb0,356089856 +shared-library,/usr/lib/libfakelink.dylib,0x1b77f8468,0x1b77f9b80,356089856 +shared-library,/usr/lib/libicucore.A.dylib,0x1adcd4cd4,0x1adf2db20,356089856 +shared-library,/usr/lib/libSystem.B.dylib,0x1b77f5490,0x1b77f5adc,356089856 +shared-library,/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking,0x1b77fabbc,0x1b77fae50,356089856 +shared-library,/usr/lib/libc++abi.dylib,0x1aab1ddc8,0x1aab319a0,356089856 +shared-library,/usr/lib/libc++.1.dylib,0x1aaa90e18,0x1aaaf0e70,356089856 +shared-library,/usr/lib/system/libcache.dylib,0x1b77ef5e0,0x1b77f2370,356089856 +shared-library,/usr/lib/system/libcommonCrypto.dylib,0x1b77a95e8,0x1b77b49e4,356089856 +shared-library,/usr/lib/system/libcompiler_rt.dylib,0x1b77d479c,0x1b77d7824,356089856 +shared-library,/usr/lib/system/libcopyfile.dylib,0x1b77cb0fc,0x1b77d1e50,356089856 +shared-library,/usr/lib/system/libcorecrypto.dylib,0x1aa8dd1c0,0x1aa964bc4,356089856 +shared-library,/usr/lib/system/libdispatch.dylib,0x1aa9c3d38,0x1aaa00c70,356089856 +shared-library,/usr/lib/system/libdyld.dylib,0x1aab7e310,0x1aaba0f58,356089856 +shared-library,/usr/lib/system/libkeymgr.dylib,0x1b77e4760,0x1b77e4e48,356089856 +shared-library,/usr/lib/system/libmacho.dylib,0x1b77835ac,0x1b778787c,356089856 +shared-library,/usr/lib/system/libquarantine.dylib,0x1b6c60b2c,0x1b6c62b48,356089856 +shared-library,/usr/lib/system/libremovefile.dylib,0x1b77e22f4,0x1b77e3c00,356089856 +shared-library,/usr/lib/system/libsystem_asl.dylib,0x1b02f93c4,0x1b030e010,356089856 +shared-library,/usr/lib/system/libsystem_blocks.dylib,0x1aa8729a8,0x1aa8758d8,356089856 +shared-library,/usr/lib/system/libsystem_c.dylib,0x1aaa0e37c,0x1aaa84290,356089856 +shared-library,/usr/lib/system/libsystem_collections.dylib,0x1b77d887c,0x1b77dc960,356089856 +shared-library,/usr/lib/system/libsystem_configuration.dylib,0x1b5e39524,0x1b5e3c700,356089856 +shared-library,/usr/lib/system/libsystem_containermanager.dylib,0x1b4e757b8,0x1b4e97d60,356089856 +shared-library,/usr/lib/system/libsystem_coreservices.dylib,0x1b741806c,0x1b741c0c0,356089856 +shared-library,/usr/lib/system/libsystem_darwin.dylib,0x1adf9c510,0x1adfa3170,356089856 +shared-library,/usr/lib/system/libsystem_darwindirectory.dylib,0x272fe2db0,0x272fe5268,356089856 +shared-library,/usr/lib/system/libsystem_dnssd.dylib,0x1b77e5dd0,0x1b77ebf50,356089856 +shared-library,/usr/lib/system/libsystem_eligibility.dylib,0x272fe78a4,0x272fe93e0,356089856 +shared-library,/usr/lib/system/libsystem_featureflags.dylib,0x1aaa0ac80,0x1aaa0ca28,356089856 +shared-library,/usr/lib/system/libsystem_info.dylib,0x1aabac874,0x1aabd32d0,356089856 +shared-library,/usr/lib/system/libsystem_m.dylib,0x1b77461c0,0x1b776cc0c,356089856 +shared-library,/usr/lib/system/libsystem_malloc.dylib,0x1aa986be0,0x1aa9b8f90,356089856 +shared-library,/usr/lib/system/libsystem_networkextension.dylib,0x1b02665a8,0x1b027b430,356089856 +shared-library,/usr/lib/system/libsystem_notify.dylib,0x1ae4120b4,0x1ae420aa0,356089856 +shared-library,/usr/lib/system/libsystem_sandbox.dylib,0x1b5e3dd20,0x1b5e41f60,356089856 +shared-library,/usr/lib/system/libsystem_sanitizers.dylib,0x272febaa0,0x272fed8c8,356089856 +shared-library,/usr/lib/system/libsystem_secinit.dylib,0x1b77de80c,0x1b77e0194,356089856 +shared-library,/usr/lib/system/libsystem_kernel.dylib,0x1aab35d80,0x1aab68f3c,356089856 +shared-library,/usr/lib/system/libsystem_platform.dylib,0x1aaba4540,0x1aabaa3e8,356089856 +shared-library,/usr/lib/system/libsystem_pthread.dylib,0x1aab70a88,0x1aab7b8e0,356089856 +shared-library,/usr/lib/system/libsystem_symptoms.dylib,0x1b1ce96e4,0x1b1cef2ac,356089856 +shared-library,/usr/lib/system/libsystem_trace.dylib,0x1aa8c2340,0x1aa8d89d8,356089856 +shared-library,/usr/lib/system/libunwind.dylib,0x1b77bab28,0x1b77c132c,356089856 +shared-library,/usr/lib/system/libxpc.dylib,0x1aa877990,0x1aa8b4848,356089856 +shared-library,/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit,0x1ae32f90c,0x1ae3e8a28,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices,0x1bee82fc0,0x1bee82fc0,356089856 +shared-library,/usr/lib/libDiagnosticMessagesClient.dylib,0x1b296de80,0x1b296ead8,356089856 +shared-library,/usr/lib/libenergytrace.dylib,0x1b02816a4,0x1b0281d28,356089856 +shared-library,/usr/lib/libbsm.0.dylib,0x1b6c883cc,0x1b6c96d40,356089856 +shared-library,/usr/lib/libz.1.dylib,0x1b7736a50,0x1b7742178,356089856 +shared-library,/usr/lib/system/libkxld.dylib,0x1b778c140,0x1b77a6a74,356089856 +shared-library,/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork,0x1afe92610,0x1b0114018,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents,0x1b34e0c78,0x1b34ead80,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore,0x1adfa79d0,0x1ae097e10,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata,0x1b29b7b4c,0x1b2a39ab8,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices,0x1b741dd78,0x1b7447e38,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit,0x1b78d42c0,0x1b7935870,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE,0x1b1c6a770,0x1b1cce210,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices,0x1ab0b3358,0x1ab2b3ce8,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices,0x1b8bfaa58,0x1b8c41e20,356089856 +shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList,0x1b34ef364,0x1b350c918,356089856 +shared-library,/System/Library/Frameworks/Security.framework/Versions/A/Security,0x1ad902eb8,0x1adc22a98,356089856 +shared-library,/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration,0x1ab9ae5e4,0x1aba31a80,356089856 +shared-library,/usr/lib/libapple_nghttp2.dylib,0x1b7974138,0x1b7986290,356089856 +shared-library,/usr/lib/libcompression.dylib,0x1b79aa400,0x1b7a01708,356089856 +shared-library,/usr/lib/libsqlite3.dylib,0x1b18ddf3c,0x1b1a798e0,356089856 +shared-library,/System/Library/Frameworks/Network.framework/Versions/A/Network,0x1b1cf2f84,0x1b26c6e50,356089856 +shared-library,/usr/lib/libCoreEntitlements.dylib,0x2716a69d0,0x2716b01b0,356089856 +shared-library,/System/Library/PrivateFrameworks/MessageSecurity.framework/Versions/A/MessageSecurity,0x257c66da4,0x257c9fda0,356089856 +shared-library,/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer,0x1b18c4138,0x1b18d62e0,356089856 +shared-library,/usr/lib/libMobileGestalt.dylib,0x1b02839c0,0x1b02dbd18,356089856 +shared-library,/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression,0x1b7346dc0,0x1b7394e58,356089856 +shared-library,/usr/lib/libcoretls.dylib,0x1b6c70290,0x1b6c823b0,356089856 +shared-library,/usr/lib/libcoretls_cfhelpers.dylib,0x1b8c6fdf0,0x1b8c70c00,356089856 +shared-library,/usr/lib/libpam.2.dylib,0x1b79a386c,0x1b79a6c6c,356089856 +shared-library,/usr/lib/libxar.1.dylib,0x1b8ce25b0,0x1b8cee778,356089856 +shared-library,/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout,0x1b3520518,0x1b3553970,356089856 +shared-library,/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration,0x1b2a520e8,0x1b2a58d28,356089856 +shared-library,/usr/lib/libarchive.2.dylib,0x1b784b5a4,0x1b78bdfe0,356089856 +shared-library,/usr/lib/libxml2.2.dylib,0x1b356a448,0x1b3633878,356089856 +shared-library,/usr/lib/liblangid.dylib,0x1b5e4a1c4,0x1b5e4acd0,356089856 +shared-library,/System/Library/Frameworks/Combine.framework/Versions/A/Combine,0x1bcd81874,0x1bce98820,356089856 +shared-library,/System/Library/PrivateFrameworks/CollectionsInternal.framework/Versions/A/CollectionsInternal,0x2463abf00,0x2464f0330,356089856 +shared-library,/System/Library/PrivateFrameworks/ReflectionInternal.framework/Versions/A/ReflectionInternal,0x25cd5c24c,0x25cd623d0,356089856 +shared-library,/System/Library/PrivateFrameworks/RuntimeInternal.framework/Versions/A/RuntimeInternal,0x25d2ee944,0x25d2fdfd0,356089856 +shared-library,/usr/lib/swift/libswiftCore.dylib,0x1ba845558,0x1bacac270,356089856 +shared-library,/usr/lib/swift/libswiftCoreFoundation.dylib,0x1d05401b4,0x1d0544f88,356089856 +shared-library,/usr/lib/swift/libswiftDarwin.dylib,0x1cdfb4358,0x1cdfb81c8,356089856 +shared-library,/usr/lib/swift/libswiftDispatch.dylib,0x1c04f3914,0x1c0504620,356089856 +shared-library,/usr/lib/swift/libswiftIOKit.dylib,0x1d058ad44,0x1d058afb0,356089856 +shared-library,/usr/lib/swift/libswiftObjectiveC.dylib,0x1c2d6849c,0x1c2d6a030,356089856 +shared-library,/usr/lib/swift/libswiftXPC.dylib,0x1d0552e34,0x1d057df50,356089856 +shared-library,/usr/lib/swift/libswift_Concurrency.dylib,0x272c9a830,0x272cf1be8,356089856 +shared-library,/usr/lib/swift/libswift_StringProcessing.dylib,0x272dee674,0x272e799a0,356089856 +shared-library,/usr/lib/swift/libswiftos.dylib,0x1c2d6cab4,0x1c2d81ba0,356089856 +shared-library,/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo,0x1b5e458a0,0x1b5e48488,356089856 +shared-library,/usr/lib/libpcap.A.dylib,0x1b77fbd2c,0x1b781d380,356089856 +shared-library,/usr/lib/libdns_services.dylib,0x1b1cdec0c,0x1b1ce5e80,356089856 +shared-library,/usr/lib/libnetwork.dylib,0x1afe90fc0,0x1afe90fc0,356089856 +shared-library,/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer,0x1b696e358,0x1b697ac30,356089856 +shared-library,/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface,0x1b4ea08f4,0x1b4eb0cf8,356089856 +shared-library,/usr/lib/liblzma.5.dylib,0x1b8c50658,0x1b8c681e0,356089856 +shared-library,/usr/lib/swift/libswift_RegexParser.dylib,0x272d451f0,0x272dd2310,356089856 +shared-library,/usr/lib/libbz2.1.0.dylib,0x1b740b434,0x1b7415fb0,356089856 +shared-library,/usr/lib/libiconv.2.dylib,0x1b783194c,0x1b7837828,356089856 +shared-library,/usr/lib/libcharset.1.dylib,0x1b777f960,0x1b777fd60,356089856 +shared-library,/usr/lib/libheimdal-asn1.dylib,0x1b90cfdb8,0x1b90d9b48,356089856 +shared-library,/usr/lib/libCheckFix.dylib,0x1b6c638c8,0x1b6c6cd04,356089856 +shared-library,/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC,0x1b0311d18,0x1b032b1a8,356089856 +shared-library,/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP,0x1b5e4d0a0,0x1b5f47f50,356089856 +shared-library,/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities,0x1b2970ffc,0x1b29a83b0,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate,0x1bf148000,0x1bf148000,356089856 +shared-library,/usr/lib/libmecab.dylib,0x1b6c9a1b0,0x1b6ce8060,356089856 +shared-library,/usr/lib/libCRFSuite.dylib,0x1aba41ce0,0x1aba709b4,356089856 +shared-library,/usr/lib/libgermantok.dylib,0x1b6cf6294,0x1b6cf7d40,356089856 +shared-library,/usr/lib/libThaiTokenizer.dylib,0x1b794ad2c,0x1b794bd50,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage,0x1b2a5b1b0,0x1b2d9cbb0,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib,0x1bee5a000,0x1bee5a000,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib,0x1b8d28c00,0x1b8d9ee90,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib,0x1b6849000,0x1b6931a9c,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib,0x1ab4b9330,0x1ab84d49c,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib,0x1b7a7ef28,0x1b8be5830,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib,0x1b6cf9030,0x1b6d0ac28,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib,0x1b798f61c,0x1b79a0960,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib,0x1b7a7a1a0,0x1b7a7d1d0,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib,0x1b5f74cb0,0x1b67e25ac,356089856 +shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib,0x1ab946bb0,0x1ab9a7c70,356089856 +shared-library,/System/Library/PrivateFrameworks/MIL.framework/Versions/A/MIL,0x2563b9404,0x25688faf0,356089856 +shared-library,/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory,0x1b34c2ac0,0x1b34d8448,356089856 +shared-library,/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory,0x1b34b35b4,0x1b34ba2b0,356089856 +shared-library,/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS,0x1b8c728c0,0x1b8cc7ea8,356089856 +shared-library,/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation,0x1b6ba0cc4,0x1b6be33a8,356089856 +shared-library,/usr/lib/libutil.dylib,0x1b8cf1068,0x1b8cf3660,356089856 +shared-library,/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/Versions/A/InstalledContentLibrary,0x254518068,0x2545c1f10,356089856 +shared-library,/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore,0x1ae2eec14,0x1ae31f8e0,356089856 +shared-library,/usr/lib/libapp_launch_measurement.dylib,0x1b351c800,0x1b351e750,356089856 +shared-library,/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/Versions/A/AppleMobileFileIntegrity,0x243b5bd44,0x243b67228,356089856 +shared-library,/usr/lib/libmis.dylib,0x1d050e920,0x1d0528be8,356089856 +shared-library,/System/Library/PrivateFrameworks/MobileSystemServices.framework/Versions/A/MobileSystemServices,0x1e0c029f8,0x1e0c04df8,356089856 +shared-library,/System/Library/PrivateFrameworks/ConfigProfileHelper.framework/Versions/A/ConfigProfileHelper,0x1fec633f4,0x1fec64788,356089856 +shared-library,/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics,0x1b293fa60,0x1b2963f28,356089856 +shared-library,/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce,0x1b794d58c,0x1b796f8dc,356089856 +shared-library,/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling,0x1ac98cb40,0x1acb2da88,356089856 +shared-library,/usr/lib/libxslt.1.dylib,0x1b8cf548c,0x1b8d17a70,356089856 +shared-library,/usr/lib/libcmph.dylib,0x1b7838910,0x1b7847bd0,356089856 +shared-library,/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji,0x1b693a3b0,0x1b69625a0,356089856 +shared-library,/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData,0x1b5f6f0d0,0x1b5f72a90,356089856 +shared-library,/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon,0x1ab855920,0x1ab91e2e0,356089856 +shared-library,/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement,0x1b6c2e98c,0x1b6c49b08,356089856 +shared-library,/usr/lib/libTLE.dylib,0x271892064,0x271899630,356089856 +shared-library-end +tick,0x19579e170,1250,0,0x0,6 +profiler,begin,1000 +new,CodeRange,0x106780000,0 +new,MemoryChunk,0x9bb438c0000,262144 +new,MemoryChunk,0x31a893f40000,262144 +new,MemoryChunk,0x1c5ed5100000,262144 +new,MemoryChunk,0x3d68f34c0000,262144 +new,MemoryChunk,0x954c3980000,262144 +heap-capacity,1030880 +heap-available,4346312128 +new,MemoryChunk,0x1746951c0000,262144 +tick,0x1955f5dac,2459,0,0x0,6 +new,MemoryChunk,0x1bbde7d40000,278528 +new,MemoryChunk,0x3f9e7a240000,262144 +new,MemoryChunk,0x179ce7ac0000,262144 +code-creation,Builtin,2,3375,0x101408000,812,DeoptimizationEntry_Eager +code-creation,Builtin,2,3375,0x101408340,812,DeoptimizationEntry_Lazy +code-creation,Builtin,2,3375,0x101408680,2032,RecordWriteSaveFP +code-creation,Builtin,2,3375,0x101408e80,1360,RecordWriteIgnoreFP +code-creation,Builtin,2,3417,0x1014093e0,280,EphemeronKeyBarrierSaveFP +code-creation,Builtin,2,3417,0x101409500,184,EphemeronKeyBarrierIgnoreFP +code-creation,Builtin,2,3417,0x1014095c0,76,AdaptorWithBuiltinExitFrame +code-creation,Builtin,2,3417,0x101409620,336,CallFunction_ReceiverIsNullOrUndefined +code-creation,Builtin,2,3417,0x101409780,412,CallFunction_ReceiverIsNotNullOrUndefined +code-creation,Builtin,2,3417,0x101409920,452,CallFunction_ReceiverIsAny +code-creation,Builtin,2,3417,0x101409b00,232,CallBoundFunction +code-creation,Builtin,2,3417,0x101409c00,856,CallWrappedFunction +code-creation,Builtin,2,3417,0x101409f60,192,Call_ReceiverIsNullOrUndefined +code-creation,Builtin,2,3459,0x10140a040,192,Call_ReceiverIsNotNullOrUndefined +code-creation,Builtin,2,3459,0x10140a120,192,Call_ReceiverIsAny +code-creation,Builtin,2,3459,0x10140a200,852,Call_ReceiverIsNullOrUndefined_Baseline_Compact +code-creation,Builtin,2,3459,0x10140a560,844,Call_ReceiverIsNullOrUndefined_Baseline +code-creation,Builtin,2,3459,0x10140a8c0,988,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact +code-creation,Builtin,2,3459,0x10140aca0,980,Call_ReceiverIsNotNullOrUndefined_Baseline +code-creation,Builtin,2,3459,0x10140b080,988,Call_ReceiverIsAny_Baseline_Compact +code-creation,Builtin,2,3459,0x10140b460,980,Call_ReceiverIsAny_Baseline +code-creation,Builtin,2,3459,0x10140b840,816,Call_ReceiverIsNullOrUndefined_WithFeedback +code-creation,Builtin,2,3459,0x10140bb80,816,Call_ReceiverIsNotNullOrUndefined_WithFeedback +code-creation,Builtin,2,3500,0x10140bec0,816,Call_ReceiverIsAny_WithFeedback +code-creation,Builtin,2,3500,0x10140c200,756,CallProxy +code-creation,Builtin,2,3500,0x10140c500,156,CallVarargs +code-creation,Builtin,2,3500,0x10140c5a0,1152,CallWithSpread +code-creation,Builtin,2,3500,0x10140ca40,1920,CallWithSpread_Baseline +code-creation,Builtin,2,3500,0x10140d1e0,1992,CallWithSpread_WithFeedback +code-creation,Builtin,2,3500,0x10140d9c0,1180,CallWithArrayLike +code-creation,Builtin,2,3500,0x10140de60,1972,CallWithArrayLike_WithFeedback +code-creation,Builtin,2,3500,0x10140e620,184,CallForwardVarargs +code-creation,Builtin,2,3500,0x10140e6e0,184,CallFunctionForwardVarargs +code-creation,Builtin,2,3500,0x10140e7a0,148,CallFunctionTemplate_CheckAccess +code-creation,Builtin,2,3542,0x10140e840,232,CallFunctionTemplate_CheckCompatibleReceiver +code-creation,Builtin,2,3542,0x10140e940,320,CallFunctionTemplate_CheckAccessAndCompatibleReceiver +code-creation,Builtin,2,3542,0x10140eaa0,24,ConstructFunction +code-creation,Builtin,2,3542,0x10140eac0,236,ConstructBoundFunction +code-creation,Builtin,2,3542,0x10140ebc0,44,ConstructedNonConstructable +code-creation,Builtin,2,3542,0x10140ec00,88,Construct +code-creation,Builtin,2,3542,0x10140ec60,156,ConstructVarargs +code-creation,Builtin,2,3542,0x10140ed00,1180,ConstructWithSpread +code-creation,Builtin,2,3542,0x10140f1a0,1928,ConstructWithSpread_Baseline +code-creation,Builtin,2,3542,0x10140f940,1908,ConstructWithSpread_WithFeedback +code-creation,Builtin,2,3542,0x1014100c0,1308,ConstructWithArrayLike +code-creation,Builtin,2,3584,0x1014105e0,2028,ConstructWithArrayLike_WithFeedback +code-creation,Builtin,2,3584,0x101410de0,236,ConstructForwardVarargs +code-creation,Builtin,2,3584,0x101410ee0,236,ConstructFunctionForwardVarargs +code-creation,Builtin,2,3584,0x101410fe0,724,Construct_Baseline +code-creation,Builtin,2,3584,0x1014112c0,728,Construct_WithFeedback +code-creation,Builtin,2,3584,0x1014115a0,540,JSConstructStubGeneric +code-creation,Builtin,2,3584,0x1014117c0,448,JSBuiltinsConstructStub +code-creation,Builtin,2,3584,0x1014119a0,812,FastNewObject +code-creation,Builtin,2,3584,0x101411ce0,344,FastNewClosure +code-creation,Builtin,2,3625,0x101411e40,796,ConstructProxy +code-creation,Builtin,2,3625,0x101412160,236,JSEntry +code-creation,Builtin,2,3625,0x101412260,236,JSConstructEntry +code-creation,Builtin,2,3625,0x101412360,236,JSRunMicrotasksEntry +code-creation,Builtin,2,3625,0x101412460,184,JSEntryTrampoline +code-creation,Builtin,2,3625,0x101412520,184,JSConstructEntryTrampoline +code-creation,Builtin,2,3625,0x1014125e0,356,ResumeGeneratorTrampoline +code-creation,Builtin,2,3625,0x101412760,1400,StringFromCodePointAt +code-creation,Builtin,2,3625,0x101412ce0,800,StringEqual +code-creation,Builtin,2,3625,0x101413020,380,StringGreaterThan +code-creation,Builtin,2,3625,0x1014131a0,380,StringGreaterThanOrEqual +code-creation,Builtin,2,3667,0x101413320,380,StringLessThan +code-creation,Builtin,2,3667,0x1014134a0,380,StringLessThanOrEqual +code-creation,Builtin,2,3667,0x101413620,380,StringCompare +code-creation,Builtin,2,3667,0x1014137a0,2748,StringSubstring +code-creation,Builtin,2,3667,0x101414260,120,OrderedHashTableHealIndex +code-creation,Builtin,2,3667,0x1014142e0,1072,InterpreterEntryTrampoline +code-creation,Builtin,2,3667,0x101414720,1108,InterpreterEntryTrampolineForProfiling +code-creation,Builtin,2,3667,0x101414b80,124,InterpreterPushArgsThenCall +code-creation,Builtin,2,3667,0x101414c00,132,InterpreterPushUndefinedAndArgsThenCall +code-creation,Builtin,2,3667,0x101414ca0,132,InterpreterPushArgsThenCallWithFinalSpread +code-creation,Builtin,2,3667,0x101414d40,132,InterpreterPushArgsThenConstruct +code-creation,Builtin,2,3709,0x101414de0,132,InterpreterPushArgsThenConstructArrayFunction +code-creation,Builtin,2,3709,0x101414e80,140,InterpreterPushArgsThenConstructWithFinalSpread +code-creation,Builtin,2,3709,0x101414f20,92,InterpreterEnterAtBytecode +code-creation,Builtin,2,3709,0x101414f80,224,InterpreterEnterAtNextBytecode +code-creation,Builtin,2,3709,0x101415080,144,InterpreterOnStackReplacement +code-creation,Builtin,2,3709,0x101415120,488,BaselineOutOfLinePrologue +code-creation,Builtin,2,3709,0x101415320,24,BaselineOutOfLinePrologueDeopt +code-creation,Builtin,2,3709,0x101415340,140,BaselineOnStackReplacement +code-creation,Builtin,2,3750,0x1014153e0,104,BaselineLeaveFrame +code-creation,Builtin,2,3750,0x101415460,232,BaselineOrInterpreterEnterAtBytecode +code-creation,Builtin,2,3750,0x101415560,236,BaselineOrInterpreterEnterAtNextBytecode +code-creation,Builtin,2,3750,0x101415660,212,InterpreterOnStackReplacement_ToBaseline +code-creation,Builtin,2,3750,0x101415740,4,MaglevOnStackReplacement +code-creation,Builtin,2,3750,0x101415760,872,CompileLazy +code-creation,Builtin,2,3750,0x101415ae0,76,CompileLazyDeoptimizedCode +code-creation,Builtin,2,3750,0x101415b40,276,InstantiateAsmJs +code-creation,Builtin,2,3750,0x101415c60,44,NotifyDeoptimized +code-creation,Builtin,2,3792,0x101415ca0,88,ContinueToCodeStubBuiltin +code-creation,Builtin,2,3792,0x101415d00,92,ContinueToCodeStubBuiltinWithResult +code-creation,Builtin,2,3792,0x101415d60,92,ContinueToJavaScriptBuiltin +code-creation,Builtin,2,3792,0x101415dc0,108,ContinueToJavaScriptBuiltinWithResult +code-creation,Builtin,2,3792,0x101415e40,372,CallApiCallback +code-creation,Builtin,2,3792,0x101415fc0,344,CallApiGetter +code-creation,Builtin,2,3792,0x101416120,8,HandleApiCall +code-creation,Builtin,2,3792,0x101416140,8,HandleApiCallAsFunction +code-creation,Builtin,2,3792,0x101416160,8,HandleApiCallAsConstructor +code-creation,Builtin,2,3792,0x101416180,56,AllocateInYoungGeneration +code-creation,Builtin,2,3792,0x1014161c0,52,AllocateRegularInYoungGeneration +code-creation,Builtin,2,3834,0x101416200,56,AllocateInOldGeneration +code-creation,Builtin,2,3834,0x101416240,52,AllocateRegularInOldGeneration +code-creation,Builtin,2,3834,0x101416280,156,NewHeapNumber +code-creation,Builtin,2,3834,0x101416320,528,CopyFastSmiOrObjectElements +code-creation,Builtin,2,3834,0x101416540,552,GrowFastDoubleElements +code-creation,Builtin,2,3834,0x101416780,448,GrowFastSmiOrObjectElements +code-creation,Builtin,2,3834,0x101416960,460,DebugBreakTrampoline +code-creation,Builtin,2,3834,0x101416b40,320,RestartFrameTrampoline +code-creation,Builtin,2,3834,0x101416ca0,220,ToNumber +code-creation,Builtin,2,3875,0x101416d80,124,ToBigInt +code-creation,Builtin,2,3875,0x101416e00,328,ToNumber_Baseline +code-creation,Builtin,2,3875,0x101416f60,392,ToNumeric_Baseline +code-creation,Builtin,2,3875,0x101417100,140,PlainPrimitiveToNumber +code-creation,Builtin,2,3875,0x1014171a0,260,ToNumberConvertBigInt +code-creation,Builtin,2,3875,0x1014172c0,100,ToBigIntConvertNumber +code-creation,Builtin,2,3875,0x101417340,148,Typeof +code-creation,Builtin,2,3875,0x1014173e0,140,BigIntToI64 +code-creation,Builtin,2,3875,0x101417480,8,BigIntToI32Pair +code-creation,Builtin,2,3875,0x1014174a0,248,I64ToBigInt +code-creation,Builtin,2,3917,0x1014175a0,8,I32PairToBigInt +code-creation,Builtin,2,3917,0x1014175c0,136,ToBooleanLazyDeoptContinuation +code-creation,Builtin,2,3917,0x101417660,192,MathCeilContinuation +code-creation,Builtin,2,3917,0x101417740,192,MathFloorContinuation +code-creation,Builtin,2,3917,0x101417820,216,MathRoundContinuation +code-creation,Builtin,2,3917,0x101417900,4728,KeyedLoadIC_PolymorphicName +code-creation,Builtin,2,3917,0x101418b80,15844,KeyedStoreIC_Megamorphic +code-creation,Builtin,2,3917,0x10141c980,12344,DefineKeyedOwnIC_Megamorphic +code-creation,Builtin,2,3917,0x10141f9c0,708,LoadGlobalIC_NoFeedback +code-creation,Builtin,2,3917,0x10141fca0,84,LoadIC_FunctionPrototype +code-creation,Builtin,2,3959,0x10141fd00,16,LoadIC_StringLength +code-creation,Builtin,2,3959,0x10141fd20,20,LoadIC_StringWrapperLength +code-creation,Builtin,2,3959,0x10141fd40,4420,LoadIC_NoFeedback +code-creation,Builtin,2,3959,0x101420ea0,44,StoreGlobalIC_Slow +code-creation,Builtin,2,3959,0x101420ee0,7628,StoreIC_NoFeedback +code-creation,Builtin,2,3959,0x101422cc0,4076,DefineNamedOwnIC_NoFeedback +code-creation,Builtin,2,3959,0x101423cc0,220,KeyedLoadIC_SloppyArguments +code-creation,Builtin,2,3959,0x101423da0,68,LoadIndexedInterceptorIC +code-creation,Builtin,2,3959,0x101423e00,288,KeyedStoreIC_SloppyArguments_Standard +code-creation,Builtin,2,3959,0x101423f40,288,KeyedStoreIC_SloppyArguments_GrowNoTransitionHandleCOW +code-creation,Builtin,2,3959,0x101424080,288,KeyedStoreIC_SloppyArguments_NoTransitionIgnoreOOB +code-creation,Builtin,2,4000,0x1014241c0,288,KeyedStoreIC_SloppyArguments_NoTransitionHandleCOW +code-creation,Builtin,2,4000,0x101424300,12408,StoreFastElementIC_Standard +code-creation,Builtin,2,4000,0x101427380,10124,StoreFastElementIC_GrowNoTransitionHandleCOW +code-creation,Builtin,2,4000,0x101429b20,11908,StoreFastElementIC_NoTransitionIgnoreOOB +code-creation,Builtin,2,4000,0x10142c9c0,6020,StoreFastElementIC_NoTransitionHandleCOW +code-creation,Builtin,2,4000,0x10142e160,8236,ElementsTransitionAndStore_Standard +code-creation,Builtin,2,4000,0x1014301a0,21552,ElementsTransitionAndStore_GrowNoTransitionHandleCOW +code-creation,Builtin,2,4000,0x1014355e0,8236,ElementsTransitionAndStore_NoTransitionIgnoreOOB +code-creation,Builtin,2,4000,0x101437620,11368,ElementsTransitionAndStore_NoTransitionHandleCOW +code-creation,Builtin,2,4042,0x10143a2a0,1120,KeyedHasIC_PolymorphicName +code-creation,Builtin,2,4042,0x10143a720,200,KeyedHasIC_SloppyArguments +code-creation,Builtin,2,4042,0x10143a800,68,HasIndexedInterceptorIC +code-creation,Builtin,2,4042,0x10143a860,164,EnqueueMicrotask +code-creation,Builtin,2,4042,0x10143a920,8,RunMicrotasksTrampoline +code-creation,Builtin,2,4042,0x10143a940,3524,RunMicrotasks +code-creation,Builtin,2,4042,0x10143b720,3800,HasProperty +code-creation,Builtin,2,4042,0x10143c600,1180,DeleteProperty +code-creation,Builtin,2,4042,0x10143caa0,2876,CopyDataProperties +code-creation,Builtin,2,4042,0x10143d5e0,11048,SetDataProperties +code-creation,Builtin,2,4084,0x101440120,3532,CopyDataPropertiesWithExcludedPropertiesOnStack +code-creation,Builtin,2,4084,0x101440f00,76,CopyDataPropertiesWithExcludedProperties +code-creation,Builtin,2,4084,0x101440f60,32,Abort +code-creation,Builtin,2,4084,0x101440fa0,32,AbortCSADcheck +code-creation,Builtin,2,4084,0x101440fe0,8,EmptyFunction +code-creation,Builtin,2,4084,0x101441000,8,Illegal +code-creation,Builtin,2,4084,0x101441020,8,StrictPoisonPillThrower +code-creation,Builtin,2,4084,0x101441040,8,UnsupportedThrower +code-creation,Builtin,2,4084,0x101441060,80,ReturnReceiver +code-creation,Builtin,2,4084,0x1014410c0,36,ArrayConstructor +code-creation,Builtin,2,4125,0x101441100,452,ArrayConstructorImpl +code-creation,Builtin,2,4125,0x1014412e0,228,ArrayNoArgumentConstructor_PackedSmi_DontOverride +code-creation,Builtin,2,4125,0x1014413e0,228,ArrayNoArgumentConstructor_HoleySmi_DontOverride +code-creation,Builtin,2,4125,0x1014414e0,188,ArrayNoArgumentConstructor_PackedSmi_DisableAllocationSites +code-creation,Builtin,2,4125,0x1014415a0,188,ArrayNoArgumentConstructor_HoleySmi_DisableAllocationSites +code-creation,Builtin,2,4125,0x101441660,188,ArrayNoArgumentConstructor_Packed_DisableAllocationSites +code-creation,Builtin,2,4125,0x101441720,188,ArrayNoArgumentConstructor_Holey_DisableAllocationSites +code-creation,Builtin,2,4125,0x1014417e0,192,ArrayNoArgumentConstructor_PackedDouble_DisableAllocationSites +code-creation,Builtin,2,4125,0x1014418c0,192,ArrayNoArgumentConstructor_HoleyDouble_DisableAllocationSites +code-creation,Builtin,2,4167,0x1014419a0,260,ArraySingleArgumentConstructor_PackedSmi_DontOverride +code-creation,Builtin,2,4167,0x101441ac0,504,ArraySingleArgumentConstructor_HoleySmi_DontOverride +code-creation,Builtin,2,4167,0x101441cc0,220,ArraySingleArgumentConstructor_PackedSmi_DisableAllocationSites +code-creation,Builtin,2,4167,0x101441da0,416,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites +code-creation,Builtin,2,4167,0x101441f60,220,ArraySingleArgumentConstructor_Packed_DisableAllocationSites +code-creation,Builtin,2,4167,0x101442040,416,ArraySingleArgumentConstructor_Holey_DisableAllocationSites +code-creation,Builtin,2,4167,0x101442200,220,ArraySingleArgumentConstructor_PackedDouble_DisableAllocationSites +code-creation,Builtin,2,4209,0x1014422e0,420,ArraySingleArgumentConstructor_HoleyDouble_DisableAllocationSites +code-creation,Builtin,2,4209,0x1014424a0,60,ArrayNArgumentsConstructor +code-creation,Builtin,2,4209,0x1014424e0,8,ArrayConcat +code-creation,Builtin,2,4209,0x101442500,8,ArrayPrototypeFill +code-creation,Builtin,2,4209,0x101442520,1424,ArrayIncludesSmi +code-creation,Builtin,2,4209,0x101442ac0,1352,ArrayIncludesSmiOrObject +code-creation,Builtin,2,4209,0x101443020,352,ArrayIncludesPackedDoubles +code-creation,Builtin,2,4209,0x1014431a0,472,ArrayIncludesHoleyDoubles +code-creation,Builtin,2,4250,0x101443380,624,ArrayIncludes +code-creation,Builtin,2,4250,0x101443600,1308,ArrayIndexOfSmi +code-creation,Builtin,2,4250,0x101443b20,1252,ArrayIndexOfSmiOrObject +code-creation,Builtin,2,4250,0x101444020,284,ArrayIndexOfPackedDoubles +code-creation,Builtin,2,4250,0x101444140,284,ArrayIndexOfHoleyDoubles +code-creation,Builtin,2,4250,0x101444260,624,ArrayIndexOf +code-creation,Builtin,2,4250,0x1014444e0,8,ArrayPop +code-creation,Builtin,2,4250,0x101444500,584,ArrayPrototypePop +code-creation,Builtin,2,4250,0x101444760,8,ArrayPrototypeGroup +code-creation,Builtin,2,4250,0x101444780,8,ArrayPrototypeGroupToMap +code-creation,Builtin,2,4292,0x1014447a0,8,ArrayPush +code-creation,Builtin,2,4292,0x1014447c0,2404,ArrayPrototypePush +code-creation,Builtin,2,4292,0x101445140,8,ArrayShift +code-creation,Builtin,2,4292,0x101445160,8,ArrayUnshift +code-creation,Builtin,2,4292,0x101445180,8,ArrayFromAsync +code-creation,Builtin,2,4292,0x1014451a0,1064,CloneFastJSArray +code-creation,Builtin,2,4292,0x1014455e0,2364,CloneFastJSArrayFillingHoles +code-creation,Builtin,2,4292,0x101445f20,1100,ExtractFastJSArray +code-creation,Builtin,2,4292,0x101446380,256,ArrayPrototypeEntries +code-creation,Builtin,2,4334,0x1014464a0,252,ArrayPrototypeKeys +code-creation,Builtin,2,4334,0x1014465a0,256,ArrayPrototypeValues +code-creation,Builtin,2,4334,0x1014466c0,3888,ArrayIteratorPrototypeNext +code-creation,Builtin,2,4334,0x101447600,4856,FlattenIntoArray +code-creation,Builtin,2,4334,0x101448900,4816,FlatMapIntoArray +code-creation,Builtin,2,4334,0x101449be0,408,ArrayPrototypeFlat +code-creation,Builtin,2,4334,0x101449d80,468,ArrayPrototypeFlatMap +code-creation,Builtin,2,4334,0x101449f60,8,ArrayBufferConstructor +code-creation,Builtin,2,4334,0x101449f80,8,ArrayBufferConstructor_DoNotInitialize +code-creation,Builtin,2,4334,0x101449fa0,8,ArrayBufferPrototypeSlice +code-creation,Builtin,2,4375,0x101449fc0,8,ArrayBufferPrototypeResize +code-creation,Builtin,2,4375,0x101449fe0,8,ArrayBufferPrototypeTransfer +code-creation,Builtin,2,4375,0x10144a000,8,ArrayBufferPrototypeTransferToFixedLength +code-creation,Builtin,2,4375,0x10144a020,952,AsyncFunctionEnter +code-creation,Builtin,2,4375,0x10144a3e0,96,AsyncFunctionReject +code-creation,Builtin,2,4375,0x10144a460,92,AsyncFunctionResolve +code-creation,Builtin,2,4375,0x10144a4c0,16,AsyncFunctionLazyDeoptContinuation +code-creation,Builtin,2,4375,0x10144a4e0,1512,AsyncFunctionAwaitCaught +code-creation,Builtin,2,4375,0x10144aae0,1512,AsyncFunctionAwaitUncaught +code-creation,Builtin,2,4375,0x10144b0e0,208,AsyncFunctionAwaitRejectClosure +code-creation,Builtin,2,4417,0x10144b1c0,204,AsyncFunctionAwaitResolveClosure +code-creation,Builtin,2,4417,0x10144b2a0,8,BigIntConstructor +code-creation,Builtin,2,4417,0x10144b2c0,8,BigIntAsUintN +code-creation,Builtin,2,4417,0x10144b2e0,8,BigIntAsIntN +code-creation,Builtin,2,4417,0x10144b300,8,BigIntPrototypeToLocaleString +code-creation,Builtin,2,4417,0x10144b320,8,BigIntPrototypeToString +code-creation,Builtin,2,4417,0x10144b340,8,BigIntPrototypeValueOf +code-creation,Builtin,2,4417,0x10144b360,8,CallSitePrototypeGetColumnNumber +code-creation,Builtin,2,4417,0x10144b380,8,CallSitePrototypeGetEnclosingColumnNumber +code-creation,Builtin,2,4417,0x10144b3a0,8,CallSitePrototypeGetEnclosingLineNumber +code-creation,Builtin,2,4459,0x10144b3c0,8,CallSitePrototypeGetEvalOrigin +code-creation,Builtin,2,4459,0x10144b3e0,8,CallSitePrototypeGetFileName +code-creation,Builtin,2,4459,0x10144b400,8,CallSitePrototypeGetFunction +code-creation,Builtin,2,4459,0x10144b420,8,CallSitePrototypeGetFunctionName +code-creation,Builtin,2,4459,0x10144b440,8,CallSitePrototypeGetLineNumber +code-creation,Builtin,2,4459,0x10144b460,8,CallSitePrototypeGetMethodName +code-creation,Builtin,2,4459,0x10144b480,8,CallSitePrototypeGetPosition +code-creation,Builtin,2,4459,0x10144b4a0,8,CallSitePrototypeGetPromiseIndex +code-creation,Builtin,2,4459,0x10144b4c0,8,CallSitePrototypeGetScriptHash +code-creation,Builtin,2,4459,0x10144b4e0,8,CallSitePrototypeGetScriptNameOrSourceURL +code-creation,Builtin,2,4500,0x10144b500,8,CallSitePrototypeGetThis +code-creation,Builtin,2,4500,0x10144b520,8,CallSitePrototypeGetTypeName +code-creation,Builtin,2,4500,0x10144b540,8,CallSitePrototypeIsAsync +code-creation,Builtin,2,4500,0x10144b560,8,CallSitePrototypeIsConstructor +code-creation,Builtin,2,4500,0x10144b580,8,CallSitePrototypeIsEval +code-creation,Builtin,2,4500,0x10144b5a0,8,CallSitePrototypeIsNative +code-creation,Builtin,2,4500,0x10144b5c0,8,CallSitePrototypeIsPromiseAll +code-creation,Builtin,2,4500,0x10144b5e0,8,CallSitePrototypeIsToplevel +code-creation,Builtin,2,4500,0x10144b600,8,CallSitePrototypeToString +code-creation,Builtin,2,4500,0x10144b620,8,ConsoleDebug +code-creation,Builtin,2,4542,0x10144b640,8,ConsoleError +code-creation,Builtin,2,4542,0x10144b660,8,ConsoleInfo +code-creation,Builtin,2,4542,0x10144b680,8,ConsoleLog +code-creation,Builtin,2,4542,0x10144b6a0,8,ConsoleWarn +code-creation,Builtin,2,4542,0x10144b6c0,8,ConsoleDir +code-creation,Builtin,2,4542,0x10144b6e0,8,ConsoleDirXml +code-creation,Builtin,2,4542,0x10144b700,8,ConsoleTable +code-creation,Builtin,2,4542,0x10144b720,8,ConsoleTrace +code-creation,Builtin,2,4542,0x10144b740,8,ConsoleGroup +code-creation,Builtin,2,4542,0x10144b760,8,ConsoleGroupCollapsed +code-creation,Builtin,2,4584,0x10144b780,8,ConsoleGroupEnd +code-creation,Builtin,2,4584,0x10144b7a0,8,ConsoleClear +code-creation,Builtin,2,4584,0x10144b7c0,8,ConsoleCount +code-creation,Builtin,2,4584,0x10144b7e0,8,ConsoleCountReset +code-creation,Builtin,2,4584,0x10144b800,8,ConsoleAssert +code-creation,Builtin,2,4584,0x10144b820,8,ConsoleProfile +code-creation,Builtin,2,4584,0x10144b840,8,ConsoleProfileEnd +code-creation,Builtin,2,4584,0x10144b860,8,ConsoleTime +code-creation,Builtin,2,4584,0x10144b880,8,ConsoleTimeLog +code-creation,Builtin,2,4584,0x10144b8a0,8,ConsoleTimeEnd +code-creation,Builtin,2,4584,0x10144b8c0,8,ConsoleTimeStamp +code-creation,Builtin,2,4584,0x10144b8e0,8,ConsoleContext +code-creation,Builtin,2,4625,0x10144b900,8,DataViewConstructor +code-creation,Builtin,2,4625,0x10144b920,8,DateConstructor +code-creation,Builtin,2,4625,0x10144b940,208,DatePrototypeGetDate +code-creation,Builtin,2,4625,0x10144ba20,208,DatePrototypeGetDay +code-creation,Builtin,2,4625,0x10144bb00,208,DatePrototypeGetFullYear +code-creation,Builtin,2,4625,0x10144bbe0,208,DatePrototypeGetHours +code-creation,Builtin,2,4625,0x10144bcc0,180,DatePrototypeGetMilliseconds +code-creation,Builtin,2,4625,0x10144bd80,208,DatePrototypeGetMinutes +code-creation,Builtin,2,4625,0x10144be60,208,DatePrototypeGetMonth +code-creation,Builtin,2,4625,0x10144bf40,208,DatePrototypeGetSeconds +code-creation,Builtin,2,4667,0x10144c020,144,DatePrototypeGetTime +code-creation,Builtin,2,4667,0x10144c0c0,180,DatePrototypeGetTimezoneOffset +code-creation,Builtin,2,4667,0x10144c180,180,DatePrototypeGetUTCDate +code-creation,Builtin,2,4667,0x10144c240,180,DatePrototypeGetUTCDay +code-creation,Builtin,2,4667,0x10144c300,180,DatePrototypeGetUTCFullYear +code-creation,Builtin,2,4667,0x10144c3c0,180,DatePrototypeGetUTCHours +code-creation,Builtin,2,4667,0x10144c480,180,DatePrototypeGetUTCMilliseconds +code-creation,Builtin,2,4667,0x10144c540,180,DatePrototypeGetUTCMinutes +code-creation,Builtin,2,4667,0x10144c600,180,DatePrototypeGetUTCMonth +code-creation,Builtin,2,4667,0x10144c6c0,180,DatePrototypeGetUTCSeconds +code-creation,Builtin,2,4667,0x10144c780,144,DatePrototypeValueOf +code-creation,Builtin,2,4709,0x10144c820,460,DatePrototypeToPrimitive +code-creation,Builtin,2,4709,0x10144ca00,8,DatePrototypeGetYear +code-creation,Builtin,2,4709,0x10144ca20,8,DatePrototypeSetYear +code-creation,Builtin,2,4709,0x10144ca40,8,DateNow +code-creation,Builtin,2,4709,0x10144ca60,8,DateParse +code-creation,Builtin,2,4709,0x10144ca80,8,DatePrototypeSetDate +code-creation,Builtin,2,4709,0x10144caa0,8,DatePrototypeSetFullYear +code-creation,Builtin,2,4709,0x10144cac0,8,DatePrototypeSetHours +code-creation,Builtin,2,4709,0x10144cae0,8,DatePrototypeSetMilliseconds +code-creation,Builtin,2,4709,0x10144cb00,8,DatePrototypeSetMinutes +code-creation,Builtin,2,4750,0x10144cb20,8,DatePrototypeSetMonth +code-creation,Builtin,2,4750,0x10144cb40,8,DatePrototypeSetSeconds +code-creation,Builtin,2,4750,0x10144cb60,8,DatePrototypeSetTime +code-creation,Builtin,2,4750,0x10144cb80,8,DatePrototypeSetUTCDate +code-creation,Builtin,2,4750,0x10144cba0,8,DatePrototypeSetUTCFullYear +code-creation,Builtin,2,4750,0x10144cbc0,8,DatePrototypeSetUTCHours +code-creation,Builtin,2,4750,0x10144cbe0,8,DatePrototypeSetUTCMilliseconds +code-creation,Builtin,2,4750,0x10144cc00,8,DatePrototypeSetUTCMinutes +code-creation,Builtin,2,4750,0x10144cc20,8,DatePrototypeSetUTCMonth +code-creation,Builtin,2,4792,0x10144cc40,8,DatePrototypeSetUTCSeconds +code-creation,Builtin,2,4792,0x10144cc60,8,DatePrototypeToDateString +code-creation,Builtin,2,4792,0x10144cc80,8,DatePrototypeToISOString +code-creation,Builtin,2,4792,0x10144cca0,8,DatePrototypeToUTCString +code-creation,Builtin,2,4792,0x10144ccc0,8,DatePrototypeToString +code-creation,Builtin,2,4792,0x10144cce0,8,DatePrototypeToTimeString +code-creation,Builtin,2,4792,0x10144cd00,8,DatePrototypeToJson +code-creation,Builtin,2,4792,0x10144cd20,8,DateUTC +code-creation,Builtin,2,4792,0x10144cd40,8,ErrorConstructor +code-creation,Builtin,2,4792,0x10144cd60,8,ErrorCaptureStackTrace +code-creation,Builtin,2,4834,0x10144cd80,8,ErrorPrototypeToString +code-creation,Builtin,2,4834,0x10144cda0,8,FunctionConstructor +code-creation,Builtin,2,4834,0x10144cdc0,80,FunctionPrototypeApply +code-creation,Builtin,2,4834,0x10144ce20,8,FunctionPrototypeBind +code-creation,Builtin,2,4834,0x10144ce40,152,FunctionPrototypeCall +code-creation,Builtin,2,4834,0x10144cee0,8,FunctionPrototypeToString +code-creation,Builtin,2,4834,0x10144cf00,244,CreateIterResultObject +code-creation,Builtin,2,4834,0x10144d000,1040,CreateGeneratorObject +code-creation,Builtin,2,4834,0x10144d420,8,GeneratorFunctionConstructor +code-creation,Builtin,2,4834,0x10144d440,436,GeneratorPrototypeNext +code-creation,Builtin,2,4875,0x10144d600,440,GeneratorPrototypeReturn +code-creation,Builtin,2,4875,0x10144d7c0,452,GeneratorPrototypeThrow +code-creation,Builtin,2,4875,0x10144d9a0,8,AsyncFunctionConstructor +code-creation,Builtin,2,4875,0x10144d9c0,368,SuspendGeneratorBaseline +code-creation,Builtin,2,4875,0x10144db40,116,ResumeGeneratorBaseline +code-creation,Builtin,2,4875,0x10144dbc0,56,GetIteratorWithFeedbackLazyDeoptContinuation +code-creation,Builtin,2,4875,0x10144dc00,112,CallIteratorWithFeedbackLazyDeoptContinuation +code-creation,Builtin,2,4875,0x10144dc80,8,GlobalDecodeURI +code-creation,Builtin,2,4875,0x10144dca0,8,GlobalDecodeURIComponent +code-creation,Builtin,2,4875,0x10144dcc0,8,GlobalEncodeURI +code-creation,Builtin,2,4875,0x10144dce0,8,GlobalEncodeURIComponent +code-creation,Builtin,2,4917,0x10144dd00,8,GlobalEscape +code-creation,Builtin,2,4917,0x10144dd20,8,GlobalUnescape +code-creation,Builtin,2,4917,0x10144dd40,8,GlobalEval +code-creation,Builtin,2,4917,0x10144dd60,160,GlobalIsFinite +code-creation,Builtin,2,4917,0x10144de20,156,GlobalIsNaN +code-creation,Builtin,2,4917,0x10144dec0,8,JsonParse +code-creation,Builtin,2,4917,0x10144dee0,8,JsonStringify +code-creation,Builtin,2,4917,0x10144df00,8,JsonRawJson +code-creation,Builtin,2,4917,0x10144df20,8,JsonIsRawJson +code-creation,Builtin,2,4917,0x10144df40,5344,LoadIC +code-creation,Builtin,2,4917,0x10144f440,4960,LoadIC_Megamorphic +code-creation,Builtin,2,4959,0x1014507c0,5208,LoadIC_Noninlined +code-creation,Builtin,2,4959,0x101451c20,48,LoadICTrampoline +code-creation,Builtin,2,4959,0x101451c60,28,LoadICBaseline +code-creation,Builtin,2,4959,0x101451c80,48,LoadICTrampoline_Megamorphic +code-creation,Builtin,2,4959,0x101451cc0,10192,LoadSuperIC +code-creation,Builtin,2,4959,0x1014544a0,28,LoadSuperICBaseline +code-creation,Builtin,2,4959,0x1014544c0,7740,KeyedLoadIC +code-creation,Builtin,2,4959,0x101456300,15812,KeyedLoadIC_Megamorphic +code-creation,Builtin,2,4959,0x10145a0e0,13080,KeyedLoadIC_MegamorphicStringKey +code-creation,Builtin,2,4959,0x10145d400,48,KeyedLoadICTrampoline +code-creation,Builtin,2,4959,0x10145d440,28,KeyedLoadICBaseline +code-creation,Builtin,2,5000,0x10145d460,48,KeyedLoadICTrampoline_Megamorphic +code-creation,Builtin,2,5000,0x10145d4a0,48,KeyedLoadICTrampoline_MegamorphicStringKey +code-creation,Builtin,2,5000,0x10145d4e0,4800,StoreGlobalIC +code-creation,Builtin,2,5000,0x10145e7c0,48,StoreGlobalICTrampoline +code-creation,Builtin,2,5000,0x10145e800,28,StoreGlobalICBaseline +code-creation,Builtin,2,5000,0x10145e820,5296,StoreIC +code-creation,Builtin,2,5000,0x10145fce0,48,StoreICTrampoline +code-creation,Builtin,2,5042,0x10145fd20,28,StoreICBaseline +code-creation,Builtin,2,5042,0x10145fd40,5116,DefineNamedOwnIC +code-creation,Builtin,2,5042,0x101461140,48,DefineNamedOwnICTrampoline +code-creation,Builtin,2,5042,0x101461180,28,DefineNamedOwnICBaseline +code-creation,Builtin,2,5042,0x1014611a0,5704,KeyedStoreIC +code-creation,Builtin,2,5042,0x101462800,48,KeyedStoreICTrampoline +code-creation,Builtin,2,5042,0x101462840,28,KeyedStoreICBaseline +code-creation,Builtin,2,5042,0x101462860,5576,DefineKeyedOwnIC +code-creation,Builtin,2,5042,0x101463e40,56,DefineKeyedOwnICTrampoline +code-creation,Builtin,2,5042,0x101463e80,36,DefineKeyedOwnICBaseline +code-creation,Builtin,2,5042,0x101463ec0,368,StoreInArrayLiteralIC +code-creation,Builtin,2,5084,0x101464040,28,StoreInArrayLiteralICBaseline +code-creation,Builtin,2,5084,0x101464060,172,LookupContextTrampoline +code-creation,Builtin,2,5084,0x101464120,184,LookupContextBaseline +code-creation,Builtin,2,5084,0x1014641e0,172,LookupContextInsideTypeofTrampoline +code-creation,Builtin,2,5084,0x1014642a0,184,LookupContextInsideTypeofBaseline +code-creation,Builtin,2,5084,0x101464360,3128,LoadGlobalIC +code-creation,Builtin,2,5084,0x101464fa0,3108,LoadGlobalICInsideTypeof +code-creation,Builtin,2,5084,0x101465be0,48,LoadGlobalICTrampoline +code-creation,Builtin,2,5084,0x101465c20,28,LoadGlobalICBaseline +code-creation,Builtin,2,5125,0x101465c40,48,LoadGlobalICInsideTypeofTrampoline +code-creation,Builtin,2,5125,0x101465c80,28,LoadGlobalICInsideTypeofBaseline +code-creation,Builtin,2,5125,0x101465ca0,152,LookupGlobalIC +code-creation,Builtin,2,5125,0x101465d40,192,LookupGlobalICTrampoline +code-creation,Builtin,2,5125,0x101465e20,176,LookupGlobalICBaseline +code-creation,Builtin,2,5125,0x101465ee0,152,LookupGlobalICInsideTypeof +code-creation,Builtin,2,5125,0x101465f80,192,LookupGlobalICInsideTypeofTrampoline +code-creation,Builtin,2,5125,0x101466060,176,LookupGlobalICInsideTypeofBaseline +code-creation,Builtin,2,5125,0x101466120,2616,CloneObjectIC +code-creation,Builtin,2,5125,0x101466b60,28,CloneObjectICBaseline +code-creation,Builtin,2,5125,0x101466b80,2860,CloneObjectIC_Slow +code-creation,Builtin,2,5167,0x1014676c0,2784,KeyedHasIC +code-creation,Builtin,2,5167,0x1014681c0,28,KeyedHasICBaseline +code-creation,Builtin,2,5167,0x1014681e0,3800,KeyedHasIC_Megamorphic +code-creation,Builtin,2,5167,0x1014690c0,1744,IterableToList +code-creation,Builtin,2,5167,0x1014697a0,1564,IterableToFixedArray +code-creation,Builtin,2,5167,0x101469dc0,772,IterableToListWithSymbolLookup +code-creation,Builtin,2,5167,0x10146a0e0,64,IterableToFixedArrayWithSymbolLookupSlow +code-creation,Builtin,2,5167,0x10146a140,120,IterableToListMayPreserveHoles +code-creation,Builtin,2,5167,0x10146a1c0,1264,IterableToFixedArrayForWasm +code-creation,Builtin,2,5167,0x10146a6c0,1676,StringListFromIterable +code-creation,Builtin,2,5209,0x10146ad60,1192,FindOrderedHashMapEntry +code-creation,Builtin,2,5209,0x10146b220,4264,MapConstructor +code-creation,Builtin,2,5209,0x10146c2e0,1972,MapPrototypeSet +code-creation,Builtin,2,5209,0x10146caa0,1532,MapPrototypeDelete +code-creation,Builtin,2,5209,0x10146d0a0,236,MapPrototypeGet +code-creation,Builtin,2,5209,0x10146d1a0,192,MapPrototypeHas +code-creation,Builtin,2,5209,0x10146d280,8,MapPrototypeClear +code-creation,Builtin,2,5209,0x10146d2a0,288,MapPrototypeEntries +code-creation,Builtin,2,5209,0x10146d3e0,160,MapPrototypeGetSize +code-creation,Builtin,2,5209,0x10146d4a0,528,MapPrototypeForEach +code-creation,Builtin,2,5209,0x10146d6c0,288,MapPrototypeKeys +code-creation,Builtin,2,5250,0x10146d800,288,MapPrototypeValues +code-creation,Builtin,2,5250,0x10146d940,868,MapIteratorPrototypeNext +code-creation,Builtin,2,5250,0x10146dcc0,1112,MapIteratorToList +code-creation,Builtin,2,5250,0x10146e120,8,NumberPrototypeToExponential +code-creation,Builtin,2,5250,0x10146e140,8,NumberPrototypeToFixed +code-creation,Builtin,2,5250,0x10146e160,8,NumberPrototypeToLocaleString +code-creation,Builtin,2,5250,0x10146e180,8,NumberPrototypeToPrecision +code-creation,Builtin,2,5250,0x10146e1a0,348,SameValue +code-creation,Builtin,2,5250,0x10146e300,184,SameValueNumbersOnly +code-creation,Builtin,2,5250,0x10146e3c0,1420,Add_Baseline +code-creation,Builtin,2,5250,0x10146e960,960,AddSmi_Baseline +code-creation,Builtin,2,5292,0x10146ed40,1420,Subtract_Baseline +code-creation,Builtin,2,5292,0x10146f2e0,1024,SubtractSmi_Baseline +code-creation,Builtin,2,5292,0x10146f700,1516,Multiply_Baseline +code-creation,Builtin,2,5292,0x10146fd00,1116,MultiplySmi_Baseline +code-creation,Builtin,2,5292,0x101470160,1564,Divide_Baseline +code-creation,Builtin,2,5292,0x101470780,1244,DivideSmi_Baseline +code-creation,Builtin,2,5292,0x101470c60,1472,Modulus_Baseline +code-creation,Builtin,2,5292,0x101471240,1100,ModulusSmi_Baseline +code-creation,Builtin,2,5292,0x1014716a0,708,Exponentiate_Baseline +code-creation,Builtin,2,5292,0x101471980,612,ExponentiateSmi_Baseline +code-creation,Builtin,2,5334,0x101471c00,1352,BitwiseAnd_Baseline +code-creation,Builtin,2,5334,0x101472160,340,BitwiseAndSmi_Baseline +code-creation,Builtin,2,5334,0x1014722c0,1352,BitwiseOr_Baseline +code-creation,Builtin,2,5334,0x101472820,340,BitwiseOrSmi_Baseline +code-creation,Builtin,2,5334,0x101472980,1352,BitwiseXor_Baseline +code-creation,Builtin,2,5334,0x101472ee0,340,BitwiseXorSmi_Baseline +code-creation,Builtin,2,5334,0x101473040,860,ShiftLeft_Baseline +code-creation,Builtin,2,5334,0x1014733a0,348,ShiftLeftSmi_Baseline +code-creation,Builtin,2,5334,0x101473500,860,ShiftRight_Baseline +code-creation,Builtin,2,5334,0x101473860,336,ShiftRightSmi_Baseline +code-creation,Builtin,2,5334,0x1014739c0,924,ShiftRightLogical_Baseline +code-creation,Builtin,2,5375,0x101473d60,584,ShiftRightLogicalSmi_Baseline +code-creation,Builtin,2,5375,0x101473fc0,1328,Add_WithFeedback +code-creation,Builtin,2,5375,0x101474500,1352,Subtract_WithFeedback +code-creation,Builtin,2,5375,0x101474a60,1440,Multiply_WithFeedback +code-creation,Builtin,2,5375,0x101475020,1476,Divide_WithFeedback +code-creation,Builtin,2,5375,0x101475600,1384,Modulus_WithFeedback +code-creation,Builtin,2,5375,0x101475b80,660,Exponentiate_WithFeedback +code-creation,Builtin,2,5375,0x101475e20,1292,BitwiseAnd_WithFeedback +code-creation,Builtin,2,5375,0x101476340,1292,BitwiseOr_WithFeedback +code-creation,Builtin,2,5375,0x101476860,1292,BitwiseXor_WithFeedback +code-creation,Builtin,2,5417,0x101476d80,816,ShiftLeft_WithFeedback +code-creation,Builtin,2,5417,0x1014770c0,816,ShiftRight_WithFeedback +code-creation,Builtin,2,5417,0x101477400,900,ShiftRightLogical_WithFeedback +code-creation,Builtin,2,5417,0x1014777a0,2016,Equal_Baseline +code-creation,Builtin,2,5417,0x101477fa0,1028,StrictEqual_Baseline +code-creation,Builtin,2,5417,0x1014783c0,1368,LessThan_Baseline +code-creation,Builtin,2,5417,0x101478920,1368,GreaterThan_Baseline +code-creation,Builtin,2,5417,0x101478e80,1368,LessThanOrEqual_Baseline +code-creation,Builtin,2,5417,0x1014793e0,1368,GreaterThanOrEqual_Baseline +code-creation,Builtin,2,5417,0x101479940,2020,Equal_WithFeedback +code-creation,Builtin,2,5459,0x10147a140,1012,StrictEqual_WithFeedback +code-creation,Builtin,2,5459,0x10147a540,1336,LessThan_WithFeedback +code-creation,Builtin,2,5459,0x10147aa80,1336,GreaterThan_WithFeedback +code-creation,Builtin,2,5459,0x10147afc0,1336,LessThanOrEqual_WithFeedback +code-creation,Builtin,2,5459,0x10147b500,1336,GreaterThanOrEqual_WithFeedback +code-creation,Builtin,2,5459,0x10147ba40,328,BitwiseNot_Baseline +code-creation,Builtin,2,5459,0x10147bba0,460,Decrement_Baseline +code-creation,Builtin,2,5459,0x10147bd80,460,Increment_Baseline +code-creation,Builtin,2,5459,0x10147bf60,480,Negate_Baseline +code-creation,Builtin,2,5459,0x10147c160,304,BitwiseNot_WithFeedback +code-creation,Builtin,2,5459,0x10147c2a0,436,Decrement_WithFeedback +code-creation,Builtin,2,5500,0x10147c460,436,Increment_WithFeedback +code-creation,Builtin,2,5500,0x10147c620,456,Negate_WithFeedback +code-creation,Builtin,2,5500,0x10147c800,292,ObjectAssign +code-creation,Builtin,2,5500,0x10147c940,900,ObjectCreate +code-creation,Builtin,2,5500,0x10147cce0,8,ObjectDefineGetter +code-creation,Builtin,2,5500,0x10147cd00,8,ObjectDefineProperties +code-creation,Builtin,2,5500,0x10147cd20,8,ObjectDefineProperty +code-creation,Builtin,2,5500,0x10147cd40,8,ObjectDefineSetter +code-creation,Builtin,2,5500,0x10147cd60,1484,ObjectEntries +code-creation,Builtin,2,5500,0x10147d340,8,ObjectFreeze +code-creation,Builtin,2,5542,0x10147d360,4524,ObjectGetOwnPropertyDescriptor +code-creation,Builtin,2,5542,0x10147e520,8,ObjectGetOwnPropertyDescriptors +code-creation,Builtin,2,5542,0x10147e540,620,ObjectGetOwnPropertyNames +code-creation,Builtin,2,5542,0x10147e7c0,8,ObjectGetOwnPropertySymbols +code-creation,Builtin,2,5542,0x10147e7e0,208,ObjectHasOwn +code-creation,Builtin,2,5542,0x10147e8c0,400,ObjectIs +code-creation,Builtin,2,5542,0x10147ea60,8,ObjectIsFrozen +code-creation,Builtin,2,5542,0x10147ea80,8,ObjectIsSealed +code-creation,Builtin,2,5542,0x10147eaa0,560,ObjectKeys +code-creation,Builtin,2,5542,0x10147ece0,8,ObjectLookupGetter +code-creation,Builtin,2,5542,0x10147ed00,8,ObjectLookupSetter +code-creation,Builtin,2,5584,0x10147ed20,2920,ObjectPrototypeHasOwnProperty +code-creation,Builtin,2,5584,0x10147f8a0,268,ObjectPrototypeIsPrototypeOf +code-creation,Builtin,2,5584,0x10147f9c0,8,ObjectPrototypePropertyIsEnumerable +code-creation,Builtin,2,5584,0x10147f9e0,8,ObjectPrototypeGetProto +code-creation,Builtin,2,5584,0x10147fa00,8,ObjectPrototypeSetProto +code-creation,Builtin,2,5584,0x10147fa20,8,ObjectSeal +code-creation,Builtin,2,5584,0x10147fa40,1328,ObjectToString +code-creation,Builtin,2,5584,0x10147ff80,1240,ObjectValues +code-creation,Builtin,2,5584,0x101480460,416,OrdinaryHasInstance +code-creation,Builtin,2,5584,0x101480620,432,InstanceOf +code-creation,Builtin,2,5625,0x1014807e0,664,InstanceOf_WithFeedback +code-creation,Builtin,2,5625,0x101480a80,676,InstanceOf_Baseline +code-creation,Builtin,2,5625,0x101480d40,280,ForInEnumerate +code-creation,Builtin,2,5625,0x101480e60,144,ForInPrepare +code-creation,Builtin,2,5625,0x101480f00,3760,ForInFilter +code-creation,Builtin,2,5625,0x101481dc0,68,ReflectApply +code-creation,Builtin,2,5625,0x101481e20,72,ReflectConstruct +code-creation,Builtin,2,5625,0x101481e80,8,ReflectDefineProperty +code-creation,Builtin,2,5625,0x101481ea0,8,ReflectOwnKeys +code-creation,Builtin,2,5625,0x101481ec0,8,ReflectSet +code-creation,Builtin,2,5625,0x101481ee0,8,RegExpCapture1Getter +code-creation,Builtin,2,5667,0x101481f00,8,RegExpCapture2Getter +code-creation,Builtin,2,5667,0x101481f20,8,RegExpCapture3Getter +code-creation,Builtin,2,5667,0x101481f40,8,RegExpCapture4Getter +code-creation,Builtin,2,5667,0x101481f60,8,RegExpCapture5Getter +code-creation,Builtin,2,5667,0x101481f80,8,RegExpCapture6Getter +code-creation,Builtin,2,5667,0x101481fa0,8,RegExpCapture7Getter +code-creation,Builtin,2,5667,0x101481fc0,8,RegExpCapture8Getter +code-creation,Builtin,2,5667,0x101481fe0,8,RegExpCapture9Getter +code-creation,Builtin,2,5667,0x101482000,2252,RegExpConstructor +code-creation,Builtin,2,5667,0x1014828e0,8,RegExpInputGetter +code-creation,Builtin,2,5667,0x101482900,8,RegExpInputSetter +code-creation,Builtin,2,5709,0x101482920,8,RegExpLastMatchGetter +code-creation,Builtin,2,5709,0x101482940,8,RegExpLastParenGetter +code-creation,Builtin,2,5709,0x101482960,8,RegExpLeftContextGetter +code-creation,Builtin,2,5709,0x101482980,852,RegExpPrototypeCompile +code-creation,Builtin,2,5709,0x101482ce0,8,RegExpPrototypeToString +code-creation,Builtin,2,5709,0x101482d00,8,RegExpRightContextGetter +code-creation,Builtin,2,5709,0x101482d20,240,RegExpExecAtom +code-creation,Builtin,2,5709,0x101482e20,1028,RegExpExecInternal +code-creation,Builtin,2,5709,0x101483240,8,RegExpInterpreterTrampoline +code-creation,Builtin,2,5709,0x101483260,8,RegExpExperimentalTrampoline +code-creation,Builtin,2,5709,0x101483280,1188,FindOrderedHashSetEntry +code-creation,Builtin,2,5750,0x101483740,2984,SetConstructor +code-creation,Builtin,2,5750,0x101484300,192,SetPrototypeHas +code-creation,Builtin,2,5750,0x1014843e0,1772,SetPrototypeAdd +code-creation,Builtin,2,5750,0x101484ae0,1500,SetPrototypeDelete +code-creation,Builtin,2,5750,0x1014850c0,8,SetPrototypeClear +code-creation,Builtin,2,5750,0x1014850e0,288,SetPrototypeEntries +code-creation,Builtin,2,5750,0x101485220,160,SetPrototypeGetSize +code-creation,Builtin,2,5750,0x1014852e0,500,SetPrototypeForEach +code-creation,Builtin,2,5750,0x1014854e0,288,SetPrototypeValues +code-creation,Builtin,2,5750,0x101485620,800,SetIteratorPrototypeNext +code-creation,Builtin,2,5750,0x101485960,1068,SetOrSetIteratorToList +code-creation,Builtin,2,5792,0x101485da0,8,ShadowRealmConstructor +code-creation,Builtin,2,5792,0x101485dc0,676,ShadowRealmGetWrappedValue +code-creation,Builtin,2,5792,0x101486080,8,ShadowRealmPrototypeEvaluate +code-creation,Builtin,2,5792,0x1014860a0,1340,ShadowRealmPrototypeImportValue +code-creation,Builtin,2,5792,0x1014865e0,276,ShadowRealmImportValueFulfilled +code-creation,Builtin,2,5792,0x101486700,88,ShadowRealmImportValueRejected +code-creation,Builtin,2,5792,0x101486760,8,SharedArrayBufferPrototypeGetByteLength +code-creation,Builtin,2,5792,0x101486780,8,SharedArrayBufferPrototypeSlice +code-creation,Builtin,2,5792,0x1014867a0,8,SharedArrayBufferPrototypeGrow +code-creation,Builtin,2,5834,0x1014867c0,2028,AtomicsLoad +code-creation,Builtin,2,5834,0x101486fc0,2160,AtomicsStore +code-creation,Builtin,2,5834,0x101487840,2756,AtomicsExchange +code-creation,Builtin,2,5834,0x101488320,2980,AtomicsCompareExchange +code-creation,Builtin,2,5834,0x101488ee0,2624,AtomicsAdd +code-creation,Builtin,2,5834,0x101489940,2656,AtomicsSub +code-creation,Builtin,2,5834,0x10148a3c0,2656,AtomicsAnd +code-creation,Builtin,2,5834,0x10148ae40,2624,AtomicsOr +code-creation,Builtin,2,5834,0x10148b8a0,2624,AtomicsXor +code-creation,Builtin,2,5834,0x10148c300,8,AtomicsNotify +code-creation,Builtin,2,5834,0x10148c320,8,AtomicsIsLockFree +code-creation,Builtin,2,5875,0x10148c340,8,AtomicsWait +code-creation,Builtin,2,5875,0x10148c360,8,AtomicsWaitAsync +code-creation,Builtin,2,5875,0x10148c380,8,StringFromCodePoint +code-creation,Builtin,2,5875,0x10148c3a0,1336,StringFromCharCode +code-creation,Builtin,2,5875,0x10148c8e0,8,StringPrototypeLastIndexOf +code-creation,Builtin,2,5875,0x10148c900,4376,StringPrototypeMatchAll +code-creation,Builtin,2,5875,0x10148da20,8,StringPrototypeLocaleCompare +code-creation,Builtin,2,5875,0x10148da40,1276,StringPrototypeReplace +code-creation,Builtin,2,5875,0x10148df40,2580,StringPrototypeSplit +code-creation,Builtin,2,5875,0x10148e960,8,StringRaw +code-creation,Builtin,2,5875,0x10148e980,8,SymbolConstructor +code-creation,Builtin,2,5917,0x10148e9a0,8,SymbolFor +code-creation,Builtin,2,5917,0x10148e9c0,8,SymbolKeyFor +code-creation,Builtin,2,5917,0x10148e9e0,96,TypedArrayBaseConstructor +code-creation,Builtin,2,5917,0x10148ea60,304,TypedArrayConstructor +code-creation,Builtin,2,5917,0x10148eba0,8,TypedArrayPrototypeBuffer +code-creation,Builtin,2,5917,0x10148ebc0,868,TypedArrayPrototypeByteLength +code-creation,Builtin,2,5917,0x10148ef40,328,TypedArrayPrototypeByteOffset +code-creation,Builtin,2,5917,0x10148f0a0,588,TypedArrayPrototypeLength +code-creation,Builtin,2,5917,0x10148f300,8,TypedArrayPrototypeCopyWithin +code-creation,Builtin,2,5917,0x10148f320,8,TypedArrayPrototypeFill +code-creation,Builtin,2,5917,0x10148f340,8,TypedArrayPrototypeIncludes +code-creation,Builtin,2,5959,0x10148f360,8,TypedArrayPrototypeIndexOf +code-creation,Builtin,2,5959,0x10148f380,8,TypedArrayPrototypeLastIndexOf +code-creation,Builtin,2,5959,0x10148f3a0,8,TypedArrayPrototypeReverse +code-creation,Builtin,2,5959,0x10148f3c0,452,TypedArrayPrototypeToStringTag +code-creation,Builtin,2,5959,0x10148f5a0,22108,TypedArrayPrototypeMap +code-creation,Builtin,2,5959,0x101494c00,1004,GenericJSToWasmWrapper +code-creation,Builtin,2,5959,0x101495000,1260,WasmReturnPromiseOnSuspend +code-creation,Builtin,2,5959,0x101495500,184,WasmSuspend +code-creation,Builtin,2,5959,0x1014955c0,308,WasmResume +code-creation,Builtin,2,5959,0x101495700,316,WasmReject +code-creation,Builtin,2,5959,0x101495840,132,WasmCompileLazy +code-creation,Builtin,2,6000,0x1014958e0,148,WasmLiftoffFrameSetup +code-creation,Builtin,2,6000,0x101495980,260,WasmDebugBreak +code-creation,Builtin,2,6000,0x101495aa0,4,WasmOnStackReplace +code-creation,Builtin,2,6000,0x101495ac0,152,WasmFloat32ToNumber +code-creation,Builtin,2,6000,0x101495b60,156,WasmFloat64ToNumber +code-creation,Builtin,2,6000,0x101495c00,24,JSToWasmLazyDeoptContinuation +code-creation,Builtin,2,6000,0x101495c20,4540,WeakMapConstructor +code-creation,Builtin,2,6000,0x101496de0,276,WeakMapLookupHashIndex +code-creation,Builtin,2,6000,0x101496f00,244,WeakMapGet +code-creation,Builtin,2,6000,0x101497000,204,WeakMapPrototypeHas +code-creation,Builtin,2,6000,0x1014970e0,276,WeakMapPrototypeSet +code-creation,Builtin,2,6042,0x101497200,192,WeakMapPrototypeDelete +code-creation,Builtin,2,6042,0x1014972e0,3184,WeakSetConstructor +code-creation,Builtin,2,6042,0x101497f60,204,WeakSetPrototypeHas +code-creation,Builtin,2,6042,0x101498040,276,WeakSetPrototypeAdd +code-creation,Builtin,2,6042,0x101498160,192,WeakSetPrototypeDelete +code-creation,Builtin,2,6042,0x101498240,488,WeakCollectionDelete +code-creation,Builtin,2,6042,0x101498440,748,WeakCollectionSet +code-creation,Builtin,2,6042,0x101498740,8,SharedStructTypeConstructor +code-creation,Builtin,2,6042,0x101498760,8,SharedStructConstructor +code-creation,Builtin,2,6084,0x101498780,8,SharedArrayConstructor +code-creation,Builtin,2,6084,0x1014987a0,8,AtomicsMutexConstructor +code-creation,Builtin,2,6084,0x1014987c0,8,AtomicsMutexLock +code-creation,Builtin,2,6084,0x1014987e0,8,AtomicsMutexTryLock +code-creation,Builtin,2,6084,0x101498800,8,AtomicsConditionConstructor +code-creation,Builtin,2,6084,0x101498820,8,AtomicsConditionWait +code-creation,Builtin,2,6084,0x101498840,8,AtomicsConditionNotify +code-creation,Builtin,2,6084,0x101498860,300,AsyncGeneratorResolve +code-creation,Builtin,2,6084,0x1014989a0,108,AsyncGeneratorReject +code-creation,Builtin,2,6084,0x101498a20,1564,AsyncGeneratorYieldWithAwait +code-creation,Builtin,2,6084,0x101499040,1840,AsyncGeneratorReturn +code-creation,Builtin,2,6125,0x101499780,376,AsyncGeneratorResumeNext +code-creation,Builtin,2,6125,0x101499900,8,AsyncGeneratorFunctionConstructor +code-creation,Builtin,2,6125,0x101499920,964,AsyncGeneratorPrototypeNext +code-creation,Builtin,2,6125,0x101499d00,964,AsyncGeneratorPrototypeReturn +code-creation,Builtin,2,6125,0x10149a0e0,964,AsyncGeneratorPrototypeThrow +code-creation,Builtin,2,6125,0x10149a4c0,1540,AsyncGeneratorAwaitCaught +code-creation,Builtin,2,6125,0x10149aae0,1540,AsyncGeneratorAwaitUncaught +code-creation,Builtin,2,6125,0x10149b100,184,AsyncGeneratorAwaitResolveClosure +code-creation,Builtin,2,6125,0x10149b1c0,184,AsyncGeneratorAwaitRejectClosure +code-creation,Builtin,2,6125,0x10149b280,124,AsyncGeneratorYieldWithAwaitResolveClosure +code-creation,Builtin,2,6167,0x10149b300,124,AsyncGeneratorReturnClosedResolveClosure +code-creation,Builtin,2,6167,0x10149b380,120,AsyncGeneratorReturnClosedRejectClosure +code-creation,Builtin,2,6167,0x10149b400,188,AsyncGeneratorReturnResolveClosure +code-creation,Builtin,2,6167,0x10149b4c0,1632,AsyncFromSyncIteratorPrototypeNext +code-creation,Builtin,2,6167,0x10149bb40,1744,AsyncFromSyncIteratorPrototypeThrow +code-creation,Builtin,2,6167,0x10149c220,1776,AsyncFromSyncIteratorPrototypeReturn +code-creation,Builtin,2,6167,0x10149c920,128,AsyncIteratorValueUnwrap +code-creation,Builtin,2,6167,0x10149c9c0,248,CEntry_Return1_ArgvInRegister_NoBuiltinExit +code-creation,Builtin,2,6167,0x10149cac0,268,CEntry_Return1_ArgvOnStack_BuiltinExit +code-creation,Builtin,2,6209,0x10149cbe0,268,CEntry_Return1_ArgvOnStack_NoBuiltinExit +code-creation,Builtin,2,6209,0x10149cd00,248,CEntry_Return2_ArgvInRegister_NoBuiltinExit +code-creation,Builtin,2,6209,0x10149ce00,268,CEntry_Return2_ArgvOnStack_BuiltinExit +code-creation,Builtin,2,6209,0x10149cf20,268,CEntry_Return2_ArgvOnStack_NoBuiltinExit +code-creation,Builtin,2,6209,0x10149d040,16,DirectCEntry +code-creation,Builtin,2,6209,0x10149d060,1432,StringAdd_CheckNone +code-creation,Builtin,2,6209,0x10149d600,2720,SubString +code-creation,Builtin,2,6209,0x10149e0c0,80,DoubleToI +code-creation,Builtin,2,6209,0x10149e120,3348,GetProperty +code-creation,Builtin,2,6209,0x10149ee40,3456,GetPropertyWithReceiver +code-creation,Builtin,2,6209,0x10149fbe0,15952,SetProperty +code-creation,Builtin,2,6250,0x1014a3a40,13056,CreateDataProperty +code-creation,Builtin,2,6250,0x1014a6d60,48,GetOwnPropertyDescriptor +code-creation,Builtin,2,6250,0x1014a6da0,4,MemCopyUint8Uint8 +code-creation,Builtin,2,6250,0x1014a6dc0,4,MemMove +code-creation,Builtin,2,6250,0x1014a6de0,196,FindNonDefaultConstructorOrConstruct +code-creation,Builtin,2,6250,0x1014a6ec0,2576,OrdinaryGetOwnPropertyDescriptor +code-creation,Builtin,2,6250,0x1014a78e0,8,IsTraceCategoryEnabled +code-creation,Builtin,2,6250,0x1014a7900,8,Trace +code-creation,Builtin,2,6250,0x1014a7920,8,FinalizationRegistryUnregister +code-creation,Builtin,2,6292,0x1014a7940,440,AsyncModuleEvaluate +code-creation,Builtin,2,6292,0x1014a7b00,8,CallAsyncModuleFulfilled +code-creation,Builtin,2,6292,0x1014a7b20,8,CallAsyncModuleRejected +code-creation,Builtin,2,6292,0x1014a7b40,8,TemporalNowTimeZone +code-creation,Builtin,2,6292,0x1014a7b60,8,TemporalNowInstant +code-creation,Builtin,2,6292,0x1014a7b80,8,TemporalNowPlainDateTime +code-creation,Builtin,2,6292,0x1014a7ba0,8,TemporalNowPlainDateTimeISO +code-creation,Builtin,2,6292,0x1014a7bc0,8,TemporalNowZonedDateTime +code-creation,Builtin,2,6292,0x1014a7be0,8,TemporalNowZonedDateTimeISO +code-creation,Builtin,2,6334,0x1014a7c00,8,TemporalNowPlainDate +code-creation,Builtin,2,6334,0x1014a7c20,8,TemporalNowPlainDateISO +code-creation,Builtin,2,6334,0x1014a7c40,8,TemporalNowPlainTimeISO +code-creation,Builtin,2,6334,0x1014a7c60,8,TemporalPlainDateConstructor +code-creation,Builtin,2,6334,0x1014a7c80,8,TemporalPlainDateFrom +code-creation,Builtin,2,6334,0x1014a7ca0,8,TemporalPlainDateCompare +code-creation,Builtin,2,6334,0x1014a7cc0,8,TemporalPlainDatePrototypeCalendar +code-creation,Builtin,2,6334,0x1014a7ce0,8,TemporalPlainDatePrototypeYear +code-creation,Builtin,2,6334,0x1014a7d00,8,TemporalPlainDatePrototypeMonth +code-creation,Builtin,2,6334,0x1014a7d20,8,TemporalPlainDatePrototypeMonthCode +code-creation,Builtin,2,6375,0x1014a7d40,8,TemporalPlainDatePrototypeDay +code-creation,Builtin,2,6375,0x1014a7d60,8,TemporalPlainDatePrototypeDayOfWeek +code-creation,Builtin,2,6375,0x1014a7d80,8,TemporalPlainDatePrototypeDayOfYear +code-creation,Builtin,2,6375,0x1014a7da0,8,TemporalPlainDatePrototypeWeekOfYear +code-creation,Builtin,2,6375,0x1014a7dc0,8,TemporalPlainDatePrototypeDaysInWeek +code-creation,Builtin,2,6375,0x1014a7de0,8,TemporalPlainDatePrototypeDaysInMonth +code-creation,Builtin,2,6375,0x1014a7e00,8,TemporalPlainDatePrototypeDaysInYear +code-creation,Builtin,2,6375,0x1014a7e20,8,TemporalPlainDatePrototypeMonthsInYear +code-creation,Builtin,2,6375,0x1014a7e40,8,TemporalPlainDatePrototypeInLeapYear +code-creation,Builtin,2,6417,0x1014a7e60,8,TemporalPlainDatePrototypeToPlainYearMonth +code-creation,Builtin,2,6417,0x1014a7e80,8,TemporalPlainDatePrototypeToPlainMonthDay +code-creation,Builtin,2,6417,0x1014a7ea0,8,TemporalPlainDatePrototypeGetISOFields +code-creation,Builtin,2,6417,0x1014a7ec0,8,TemporalPlainDatePrototypeAdd +code-creation,Builtin,2,6417,0x1014a7ee0,8,TemporalPlainDatePrototypeSubtract +code-creation,Builtin,2,6417,0x1014a7f00,8,TemporalPlainDatePrototypeWith +code-creation,Builtin,2,6417,0x1014a7f20,8,TemporalPlainDatePrototypeWithCalendar +code-creation,Builtin,2,6417,0x1014a7f40,8,TemporalPlainDatePrototypeUntil +code-creation,Builtin,2,6417,0x1014a7f60,8,TemporalPlainDatePrototypeSince +code-creation,Builtin,2,6417,0x1014a7f80,8,TemporalPlainDatePrototypeEquals +code-creation,Builtin,2,6459,0x1014a7fa0,8,TemporalPlainDatePrototypeToPlainDateTime +code-creation,Builtin,2,6459,0x1014a7fc0,8,TemporalPlainDatePrototypeToZonedDateTime +code-creation,Builtin,2,6459,0x1014a7fe0,8,TemporalPlainDatePrototypeToString +code-creation,Builtin,2,6459,0x1014a8000,8,TemporalPlainDatePrototypeToJSON +code-creation,Builtin,2,6459,0x1014a8020,8,TemporalPlainDatePrototypeToLocaleString +code-creation,Builtin,2,6459,0x1014a8040,8,TemporalPlainDatePrototypeValueOf +code-creation,Builtin,2,6459,0x1014a8060,8,TemporalPlainTimeConstructor +code-creation,Builtin,2,6459,0x1014a8080,8,TemporalPlainTimeFrom +code-creation,Builtin,2,6459,0x1014a80a0,8,TemporalPlainTimeCompare +code-creation,Builtin,2,6500,0x1014a80c0,8,TemporalPlainTimePrototypeCalendar +code-creation,Builtin,2,6500,0x1014a80e0,8,TemporalPlainTimePrototypeHour +code-creation,Builtin,2,6500,0x1014a8100,8,TemporalPlainTimePrototypeMinute +code-creation,Builtin,2,6500,0x1014a8120,8,TemporalPlainTimePrototypeSecond +code-creation,Builtin,2,6500,0x1014a8140,8,TemporalPlainTimePrototypeMillisecond +code-creation,Builtin,2,6500,0x1014a8160,8,TemporalPlainTimePrototypeMicrosecond +code-creation,Builtin,2,6500,0x1014a8180,8,TemporalPlainTimePrototypeNanosecond +code-creation,Builtin,2,6500,0x1014a81a0,8,TemporalPlainTimePrototypeAdd +code-creation,Builtin,2,6500,0x1014a81c0,8,TemporalPlainTimePrototypeSubtract +code-creation,Builtin,2,6500,0x1014a81e0,8,TemporalPlainTimePrototypeWith +code-creation,Builtin,2,6542,0x1014a8200,8,TemporalPlainTimePrototypeUntil +code-creation,Builtin,2,6542,0x1014a8220,8,TemporalPlainTimePrototypeSince +code-creation,Builtin,2,6542,0x1014a8240,8,TemporalPlainTimePrototypeRound +code-creation,Builtin,2,6542,0x1014a8260,8,TemporalPlainTimePrototypeEquals +code-creation,Builtin,2,6542,0x1014a8280,8,TemporalPlainTimePrototypeToPlainDateTime +code-creation,Builtin,2,6542,0x1014a82a0,8,TemporalPlainTimePrototypeToZonedDateTime +code-creation,Builtin,2,6542,0x1014a82c0,8,TemporalPlainTimePrototypeGetISOFields +code-creation,Builtin,2,6542,0x1014a82e0,8,TemporalPlainTimePrototypeToString +code-creation,Builtin,2,6542,0x1014a8300,8,TemporalPlainTimePrototypeToJSON +code-creation,Builtin,2,6584,0x1014a8320,8,TemporalPlainTimePrototypeToLocaleString +code-creation,Builtin,2,6584,0x1014a8340,8,TemporalPlainTimePrototypeValueOf +code-creation,Builtin,2,6584,0x1014a8360,8,TemporalPlainDateTimeConstructor +code-creation,Builtin,2,6584,0x1014a8380,8,TemporalPlainDateTimeFrom +code-creation,Builtin,2,6584,0x1014a83a0,8,TemporalPlainDateTimeCompare +code-creation,Builtin,2,6584,0x1014a83c0,8,TemporalPlainDateTimePrototypeCalendar +code-creation,Builtin,2,6584,0x1014a83e0,8,TemporalPlainDateTimePrototypeYear +code-creation,Builtin,2,6584,0x1014a8400,8,TemporalPlainDateTimePrototypeMonth +code-creation,Builtin,2,6584,0x1014a8420,8,TemporalPlainDateTimePrototypeMonthCode +code-creation,Builtin,2,6625,0x1014a8440,8,TemporalPlainDateTimePrototypeDay +code-creation,Builtin,2,6625,0x1014a8460,8,TemporalPlainDateTimePrototypeHour +code-creation,Builtin,2,6625,0x1014a8480,8,TemporalPlainDateTimePrototypeMinute +code-creation,Builtin,2,6625,0x1014a84a0,8,TemporalPlainDateTimePrototypeSecond +code-creation,Builtin,2,6625,0x1014a84c0,8,TemporalPlainDateTimePrototypeMillisecond +code-creation,Builtin,2,6625,0x1014a84e0,8,TemporalPlainDateTimePrototypeMicrosecond +code-creation,Builtin,2,6625,0x1014a8500,8,TemporalPlainDateTimePrototypeNanosecond +code-creation,Builtin,2,6625,0x1014a8520,8,TemporalPlainDateTimePrototypeDayOfWeek +code-creation,Builtin,2,6625,0x1014a8540,8,TemporalPlainDateTimePrototypeDayOfYear +code-creation,Builtin,2,6625,0x1014a8560,8,TemporalPlainDateTimePrototypeWeekOfYear +code-creation,Builtin,2,6667,0x1014a8580,8,TemporalPlainDateTimePrototypeDaysInWeek +code-creation,Builtin,2,6667,0x1014a85a0,8,TemporalPlainDateTimePrototypeDaysInMonth +code-creation,Builtin,2,6667,0x1014a85c0,8,TemporalPlainDateTimePrototypeDaysInYear +code-creation,Builtin,2,6667,0x1014a85e0,8,TemporalPlainDateTimePrototypeMonthsInYear +code-creation,Builtin,2,6667,0x1014a8600,8,TemporalPlainDateTimePrototypeInLeapYear +code-creation,Builtin,2,6667,0x1014a8620,8,TemporalPlainDateTimePrototypeWith +code-creation,Builtin,2,6667,0x1014a8640,8,TemporalPlainDateTimePrototypeWithPlainTime +code-creation,Builtin,2,6667,0x1014a8660,8,TemporalPlainDateTimePrototypeWithPlainDate +code-creation,Builtin,2,6667,0x1014a8680,8,TemporalPlainDateTimePrototypeWithCalendar +code-creation,Builtin,2,6709,0x1014a86a0,8,TemporalPlainDateTimePrototypeAdd +code-creation,Builtin,2,6709,0x1014a86c0,8,TemporalPlainDateTimePrototypeSubtract +code-creation,Builtin,2,6709,0x1014a86e0,8,TemporalPlainDateTimePrototypeUntil +code-creation,Builtin,2,6709,0x1014a8700,8,TemporalPlainDateTimePrototypeSince +code-creation,Builtin,2,6709,0x1014a8720,8,TemporalPlainDateTimePrototypeRound +code-creation,Builtin,2,6709,0x1014a8740,8,TemporalPlainDateTimePrototypeEquals +code-creation,Builtin,2,6709,0x1014a8760,8,TemporalPlainDateTimePrototypeToString +code-creation,Builtin,2,6709,0x1014a8780,8,TemporalPlainDateTimePrototypeToJSON +code-creation,Builtin,2,6709,0x1014a87a0,8,TemporalPlainDateTimePrototypeToLocaleString +code-creation,Builtin,2,6750,0x1014a87c0,8,TemporalPlainDateTimePrototypeValueOf +code-creation,Builtin,2,6750,0x1014a87e0,8,TemporalPlainDateTimePrototypeToZonedDateTime +code-creation,Builtin,2,6750,0x1014a8800,8,TemporalPlainDateTimePrototypeToPlainDate +code-creation,Builtin,2,6750,0x1014a8820,8,TemporalPlainDateTimePrototypeToPlainYearMonth +code-creation,Builtin,2,6750,0x1014a8840,8,TemporalPlainDateTimePrototypeToPlainMonthDay +code-creation,Builtin,2,6750,0x1014a8860,8,TemporalPlainDateTimePrototypeToPlainTime +code-creation,Builtin,2,6750,0x1014a8880,8,TemporalPlainDateTimePrototypeGetISOFields +code-creation,Builtin,2,6750,0x1014a88a0,8,TemporalZonedDateTimeConstructor +code-creation,Builtin,2,6750,0x1014a88c0,8,TemporalZonedDateTimeFrom +code-creation,Builtin,2,6792,0x1014a88e0,8,TemporalZonedDateTimeCompare +code-creation,Builtin,2,6792,0x1014a8900,8,TemporalZonedDateTimePrototypeCalendar +code-creation,Builtin,2,6792,0x1014a8920,8,TemporalZonedDateTimePrototypeTimeZone +code-creation,Builtin,2,6792,0x1014a8940,8,TemporalZonedDateTimePrototypeYear +code-creation,Builtin,2,6792,0x1014a8960,8,TemporalZonedDateTimePrototypeMonth +code-creation,Builtin,2,6792,0x1014a8980,8,TemporalZonedDateTimePrototypeMonthCode +code-creation,Builtin,2,6792,0x1014a89a0,8,TemporalZonedDateTimePrototypeDay +code-creation,Builtin,2,6792,0x1014a89c0,8,TemporalZonedDateTimePrototypeHour +code-creation,Builtin,2,6792,0x1014a89e0,8,TemporalZonedDateTimePrototypeMinute +code-creation,Builtin,2,6834,0x1014a8a00,8,TemporalZonedDateTimePrototypeSecond +code-creation,Builtin,2,6834,0x1014a8a20,8,TemporalZonedDateTimePrototypeMillisecond +code-creation,Builtin,2,6834,0x1014a8a40,8,TemporalZonedDateTimePrototypeMicrosecond +code-creation,Builtin,2,6834,0x1014a8a60,8,TemporalZonedDateTimePrototypeNanosecond +code-creation,Builtin,2,6834,0x1014a8a80,8,TemporalZonedDateTimePrototypeEpochSeconds +code-creation,Builtin,2,6834,0x1014a8aa0,8,TemporalZonedDateTimePrototypeEpochMilliseconds +code-creation,Builtin,2,6834,0x1014a8ac0,8,TemporalZonedDateTimePrototypeEpochMicroseconds +code-creation,Builtin,2,6834,0x1014a8ae0,8,TemporalZonedDateTimePrototypeEpochNanoseconds +code-creation,Builtin,2,6834,0x1014a8b00,8,TemporalZonedDateTimePrototypeDayOfWeek +code-creation,Builtin,2,6875,0x1014a8b20,8,TemporalZonedDateTimePrototypeDayOfYear +code-creation,Builtin,2,6875,0x1014a8b40,8,TemporalZonedDateTimePrototypeWeekOfYear +code-creation,Builtin,2,6875,0x1014a8b60,8,TemporalZonedDateTimePrototypeHoursInDay +code-creation,Builtin,2,6875,0x1014a8b80,8,TemporalZonedDateTimePrototypeDaysInWeek +code-creation,Builtin,2,6875,0x1014a8ba0,8,TemporalZonedDateTimePrototypeDaysInMonth +code-creation,Builtin,2,6875,0x1014a8bc0,8,TemporalZonedDateTimePrototypeDaysInYear +code-creation,Builtin,2,6875,0x1014a8be0,8,TemporalZonedDateTimePrototypeMonthsInYear +code-creation,Builtin,2,6875,0x1014a8c00,8,TemporalZonedDateTimePrototypeInLeapYear +code-creation,Builtin,2,6875,0x1014a8c20,8,TemporalZonedDateTimePrototypeOffsetNanoseconds +code-creation,Builtin,2,6917,0x1014a8c40,8,TemporalZonedDateTimePrototypeOffset +code-creation,Builtin,2,6917,0x1014a8c60,8,TemporalZonedDateTimePrototypeWith +code-creation,Builtin,2,6917,0x1014a8c80,8,TemporalZonedDateTimePrototypeWithPlainTime +code-creation,Builtin,2,6917,0x1014a8ca0,8,TemporalZonedDateTimePrototypeWithPlainDate +code-creation,Builtin,2,6917,0x1014a8cc0,8,TemporalZonedDateTimePrototypeWithTimeZone +code-creation,Builtin,2,6917,0x1014a8ce0,8,TemporalZonedDateTimePrototypeWithCalendar +code-creation,Builtin,2,6917,0x1014a8d00,8,TemporalZonedDateTimePrototypeAdd +code-creation,Builtin,2,6917,0x1014a8d20,8,TemporalZonedDateTimePrototypeSubtract +code-creation,Builtin,2,6917,0x1014a8d40,8,TemporalZonedDateTimePrototypeUntil +code-creation,Builtin,2,6917,0x1014a8d60,8,TemporalZonedDateTimePrototypeSince +code-creation,Builtin,2,6959,0x1014a8d80,8,TemporalZonedDateTimePrototypeRound +code-creation,Builtin,2,6959,0x1014a8da0,8,TemporalZonedDateTimePrototypeEquals +code-creation,Builtin,2,6959,0x1014a8dc0,8,TemporalZonedDateTimePrototypeToString +code-creation,Builtin,2,6959,0x1014a8de0,8,TemporalZonedDateTimePrototypeToJSON +code-creation,Builtin,2,6959,0x1014a8e00,8,TemporalZonedDateTimePrototypeToLocaleString +code-creation,Builtin,2,6959,0x1014a8e20,8,TemporalZonedDateTimePrototypeValueOf +code-creation,Builtin,2,6959,0x1014a8e40,8,TemporalZonedDateTimePrototypeStartOfDay +code-creation,Builtin,2,6959,0x1014a8e60,8,TemporalZonedDateTimePrototypeToInstant +code-creation,Builtin,2,6959,0x1014a8e80,8,TemporalZonedDateTimePrototypeToPlainDate +code-creation,Builtin,2,7000,0x1014a8ea0,8,TemporalZonedDateTimePrototypeToPlainTime +code-creation,Builtin,2,7000,0x1014a8ec0,8,TemporalZonedDateTimePrototypeToPlainDateTime +code-creation,Builtin,2,7000,0x1014a8ee0,8,TemporalZonedDateTimePrototypeToPlainYearMonth +code-creation,Builtin,2,7000,0x1014a8f00,8,TemporalZonedDateTimePrototypeToPlainMonthDay +code-creation,Builtin,2,7000,0x1014a8f20,8,TemporalZonedDateTimePrototypeGetISOFields +code-creation,Builtin,2,7000,0x1014a8f40,8,TemporalDurationConstructor +code-creation,Builtin,2,7000,0x1014a8f60,8,TemporalDurationFrom +code-creation,Builtin,2,7000,0x1014a8f80,8,TemporalDurationCompare +code-creation,Builtin,2,7000,0x1014a8fa0,8,TemporalDurationPrototypeYears +code-creation,Builtin,2,7042,0x1014a8fc0,8,TemporalDurationPrototypeMonths +code-creation,Builtin,2,7042,0x1014a8fe0,8,TemporalDurationPrototypeWeeks +code-creation,Builtin,2,7042,0x1014a9000,8,TemporalDurationPrototypeDays +code-creation,Builtin,2,7042,0x1014a9020,8,TemporalDurationPrototypeHours +code-creation,Builtin,2,7042,0x1014a9040,8,TemporalDurationPrototypeMinutes +code-creation,Builtin,2,7042,0x1014a9060,8,TemporalDurationPrototypeSeconds +code-creation,Builtin,2,7042,0x1014a9080,8,TemporalDurationPrototypeMilliseconds +code-creation,Builtin,2,7042,0x1014a90a0,8,TemporalDurationPrototypeMicroseconds +code-creation,Builtin,2,7042,0x1014a90c0,8,TemporalDurationPrototypeNanoseconds +code-creation,Builtin,2,7042,0x1014a90e0,8,TemporalDurationPrototypeSign +code-creation,Builtin,2,7084,0x1014a9100,8,TemporalDurationPrototypeBlank +code-creation,Builtin,2,7084,0x1014a9120,8,TemporalDurationPrototypeWith +code-creation,Builtin,2,7084,0x1014a9140,8,TemporalDurationPrototypeNegated +code-creation,Builtin,2,7084,0x1014a9160,8,TemporalDurationPrototypeAbs +code-creation,Builtin,2,7084,0x1014a9180,8,TemporalDurationPrototypeAdd +code-creation,Builtin,2,7084,0x1014a91a0,8,TemporalDurationPrototypeSubtract +code-creation,Builtin,2,7084,0x1014a91c0,8,TemporalDurationPrototypeRound +code-creation,Builtin,2,7084,0x1014a91e0,8,TemporalDurationPrototypeTotal +code-creation,Builtin,2,7084,0x1014a9200,8,TemporalDurationPrototypeToString +code-creation,Builtin,2,7084,0x1014a9220,8,TemporalDurationPrototypeToJSON +code-creation,Builtin,2,7125,0x1014a9240,8,TemporalDurationPrototypeToLocaleString +code-creation,Builtin,2,7125,0x1014a9260,8,TemporalDurationPrototypeValueOf +code-creation,Builtin,2,7125,0x1014a9280,8,TemporalInstantConstructor +code-creation,Builtin,2,7125,0x1014a92a0,8,TemporalInstantFrom +code-creation,Builtin,2,7125,0x1014a92c0,8,TemporalInstantFromEpochSeconds +code-creation,Builtin,2,7125,0x1014a92e0,8,TemporalInstantFromEpochMilliseconds +code-creation,Builtin,2,7125,0x1014a9300,8,TemporalInstantFromEpochMicroseconds +code-creation,Builtin,2,7125,0x1014a9320,8,TemporalInstantFromEpochNanoseconds +code-creation,Builtin,2,7125,0x1014a9340,8,TemporalInstantCompare +code-creation,Builtin,2,7125,0x1014a9360,8,TemporalInstantPrototypeEpochSeconds +code-creation,Builtin,2,7167,0x1014a9380,8,TemporalInstantPrototypeEpochMilliseconds +code-creation,Builtin,2,7167,0x1014a93a0,8,TemporalInstantPrototypeEpochMicroseconds +code-creation,Builtin,2,7167,0x1014a93c0,8,TemporalInstantPrototypeEpochNanoseconds +code-creation,Builtin,2,7167,0x1014a93e0,8,TemporalInstantPrototypeAdd +code-creation,Builtin,2,7167,0x1014a9400,8,TemporalInstantPrototypeSubtract +code-creation,Builtin,2,7167,0x1014a9420,8,TemporalInstantPrototypeUntil +code-creation,Builtin,2,7167,0x1014a9440,8,TemporalInstantPrototypeSince +code-creation,Builtin,2,7167,0x1014a9460,8,TemporalInstantPrototypeRound +code-creation,Builtin,2,7167,0x1014a9480,8,TemporalInstantPrototypeEquals +code-creation,Builtin,2,7167,0x1014a94a0,8,TemporalInstantPrototypeToString +code-creation,Builtin,2,7209,0x1014a94c0,8,TemporalInstantPrototypeToJSON +code-creation,Builtin,2,7209,0x1014a94e0,8,TemporalInstantPrototypeToLocaleString +code-creation,Builtin,2,7209,0x1014a9500,8,TemporalInstantPrototypeValueOf +code-creation,Builtin,2,7209,0x1014a9520,8,TemporalInstantPrototypeToZonedDateTime +code-creation,Builtin,2,7209,0x1014a9540,8,TemporalInstantPrototypeToZonedDateTimeISO +code-creation,Builtin,2,7209,0x1014a9560,8,TemporalPlainYearMonthConstructor +code-creation,Builtin,2,7209,0x1014a9580,8,TemporalPlainYearMonthFrom +code-creation,Builtin,2,7209,0x1014a95a0,8,TemporalPlainYearMonthCompare +code-creation,Builtin,2,7250,0x1014a95c0,8,TemporalPlainYearMonthPrototypeCalendar +code-creation,Builtin,2,7250,0x1014a95e0,8,TemporalPlainYearMonthPrototypeYear +code-creation,Builtin,2,7250,0x1014a9600,8,TemporalPlainYearMonthPrototypeMonth +code-creation,Builtin,2,7250,0x1014a9620,8,TemporalPlainYearMonthPrototypeMonthCode +code-creation,Builtin,2,7250,0x1014a9640,8,TemporalPlainYearMonthPrototypeDaysInYear +code-creation,Builtin,2,7250,0x1014a9660,8,TemporalPlainYearMonthPrototypeDaysInMonth +code-creation,Builtin,2,7250,0x1014a9680,8,TemporalPlainYearMonthPrototypeMonthsInYear +code-creation,Builtin,2,7250,0x1014a96a0,8,TemporalPlainYearMonthPrototypeInLeapYear +code-creation,Builtin,2,7250,0x1014a96c0,8,TemporalPlainYearMonthPrototypeWith +code-creation,Builtin,2,7292,0x1014a96e0,8,TemporalPlainYearMonthPrototypeAdd +code-creation,Builtin,2,7292,0x1014a9700,8,TemporalPlainYearMonthPrototypeSubtract +code-creation,Builtin,2,7292,0x1014a9720,8,TemporalPlainYearMonthPrototypeUntil +code-creation,Builtin,2,7292,0x1014a9740,8,TemporalPlainYearMonthPrototypeSince +code-creation,Builtin,2,7292,0x1014a9760,8,TemporalPlainYearMonthPrototypeEquals +code-creation,Builtin,2,7292,0x1014a9780,8,TemporalPlainYearMonthPrototypeToString +code-creation,Builtin,2,7292,0x1014a97a0,8,TemporalPlainYearMonthPrototypeToJSON +code-creation,Builtin,2,7292,0x1014a97c0,8,TemporalPlainYearMonthPrototypeToLocaleString +code-creation,Builtin,2,7292,0x1014a97e0,8,TemporalPlainYearMonthPrototypeValueOf +code-creation,Builtin,2,7292,0x1014a9800,8,TemporalPlainYearMonthPrototypeToPlainDate +code-creation,Builtin,2,7334,0x1014a9820,8,TemporalPlainYearMonthPrototypeGetISOFields +code-creation,Builtin,2,7334,0x1014a9840,8,TemporalPlainMonthDayConstructor +code-creation,Builtin,2,7334,0x1014a9860,8,TemporalPlainMonthDayFrom +code-creation,Builtin,2,7334,0x1014a9880,8,TemporalPlainMonthDayPrototypeCalendar +code-creation,Builtin,2,7334,0x1014a98a0,8,TemporalPlainMonthDayPrototypeMonthCode +code-creation,Builtin,2,7334,0x1014a98c0,8,TemporalPlainMonthDayPrototypeDay +code-creation,Builtin,2,7334,0x1014a98e0,8,TemporalPlainMonthDayPrototypeWith +code-creation,Builtin,2,7334,0x1014a9900,8,TemporalPlainMonthDayPrototypeEquals +code-creation,Builtin,2,7334,0x1014a9920,8,TemporalPlainMonthDayPrototypeToString +code-creation,Builtin,2,7375,0x1014a9940,8,TemporalPlainMonthDayPrototypeToJSON +code-creation,Builtin,2,7375,0x1014a9960,8,TemporalPlainMonthDayPrototypeToLocaleString +code-creation,Builtin,2,7375,0x1014a9980,8,TemporalPlainMonthDayPrototypeValueOf +code-creation,Builtin,2,7375,0x1014a99a0,8,TemporalPlainMonthDayPrototypeToPlainDate +code-creation,Builtin,2,7375,0x1014a99c0,8,TemporalPlainMonthDayPrototypeGetISOFields +code-creation,Builtin,2,7375,0x1014a99e0,8,TemporalTimeZoneConstructor +code-creation,Builtin,2,7375,0x1014a9a00,8,TemporalTimeZoneFrom +code-creation,Builtin,2,7375,0x1014a9a20,8,TemporalTimeZonePrototypeId +code-creation,Builtin,2,7375,0x1014a9a40,8,TemporalTimeZonePrototypeGetOffsetNanosecondsFor +code-creation,Builtin,2,7375,0x1014a9a60,8,TemporalTimeZonePrototypeGetOffsetStringFor +code-creation,Builtin,2,7417,0x1014a9a80,8,TemporalTimeZonePrototypeGetPlainDateTimeFor +code-creation,Builtin,2,7417,0x1014a9aa0,8,TemporalTimeZonePrototypeGetInstantFor +code-creation,Builtin,2,7417,0x1014a9ac0,8,TemporalTimeZonePrototypeGetPossibleInstantsFor +code-creation,Builtin,2,7417,0x1014a9ae0,8,TemporalTimeZonePrototypeGetNextTransition +code-creation,Builtin,2,7417,0x1014a9b00,8,TemporalTimeZonePrototypeGetPreviousTransition +code-creation,Builtin,2,7417,0x1014a9b20,8,TemporalTimeZonePrototypeToString +code-creation,Builtin,2,7417,0x1014a9b40,8,TemporalTimeZonePrototypeToJSON +code-creation,Builtin,2,7417,0x1014a9b60,8,TemporalCalendarConstructor +code-creation,Builtin,2,7417,0x1014a9b80,8,TemporalCalendarFrom +code-creation,Builtin,2,7459,0x1014a9ba0,8,TemporalCalendarPrototypeId +code-creation,Builtin,2,7459,0x1014a9bc0,8,TemporalCalendarPrototypeDateFromFields +code-creation,Builtin,2,7459,0x1014a9be0,8,TemporalCalendarPrototypeYearMonthFromFields +code-creation,Builtin,2,7459,0x1014a9c00,8,TemporalCalendarPrototypeMonthDayFromFields +code-creation,Builtin,2,7459,0x1014a9c20,8,TemporalCalendarPrototypeDateAdd +code-creation,Builtin,2,7459,0x1014a9c40,8,TemporalCalendarPrototypeDateUntil +code-creation,Builtin,2,7459,0x1014a9c60,8,TemporalCalendarPrototypeYear +code-creation,Builtin,2,7459,0x1014a9c80,8,TemporalCalendarPrototypeMonth +code-creation,Builtin,2,7459,0x1014a9ca0,8,TemporalCalendarPrototypeMonthCode +code-creation,Builtin,2,7500,0x1014a9cc0,8,TemporalCalendarPrototypeDay +code-creation,Builtin,2,7500,0x1014a9ce0,8,TemporalCalendarPrototypeDayOfWeek +code-creation,Builtin,2,7500,0x1014a9d00,8,TemporalCalendarPrototypeDayOfYear +code-creation,Builtin,2,7500,0x1014a9d20,8,TemporalCalendarPrototypeWeekOfYear +code-creation,Builtin,2,7500,0x1014a9d40,8,TemporalCalendarPrototypeDaysInWeek +code-creation,Builtin,2,7500,0x1014a9d60,8,TemporalCalendarPrototypeDaysInMonth +code-creation,Builtin,2,7500,0x1014a9d80,8,TemporalCalendarPrototypeDaysInYear +code-creation,Builtin,2,7500,0x1014a9da0,8,TemporalCalendarPrototypeMonthsInYear +code-creation,Builtin,2,7542,0x1014a9dc0,8,TemporalCalendarPrototypeInLeapYear +code-creation,Builtin,2,7542,0x1014a9de0,3488,TemporalCalendarPrototypeFields +code-creation,Builtin,2,7542,0x1014aaba0,8,TemporalCalendarPrototypeMergeFields +code-creation,Builtin,2,7542,0x1014aabc0,8,TemporalCalendarPrototypeToString +code-creation,Builtin,2,7542,0x1014aabe0,8,TemporalCalendarPrototypeToJSON +code-creation,Builtin,2,7542,0x1014aac00,8,DatePrototypeToTemporalInstant +code-creation,Builtin,2,7542,0x1014aac20,1728,StringFixedArrayFromIterable +code-creation,Builtin,2,7542,0x1014ab300,1728,TemporalInstantFixedArrayFromIterable +code-creation,Builtin,2,7584,0x1014ab9e0,296,AggregateErrorConstructor +code-creation,Builtin,2,7584,0x1014abb20,804,ArrayPrototypeAt +code-creation,Builtin,2,7584,0x1014abe60,536,ArrayPrototypeConcat +code-creation,Builtin,2,7584,0x1014ac080,4368,ArrayPrototypeCopyWithin +code-creation,Builtin,2,7584,0x1014ad1a0,240,ArrayEveryLoopEagerDeoptContinuation +code-creation,Builtin,2,7584,0x1014ad2a0,544,ArrayEveryLoopLazyDeoptContinuation +code-creation,Builtin,2,7584,0x1014ad4e0,4184,ArrayEveryLoopContinuation +code-creation,Builtin,2,7584,0x1014ae540,1444,ArrayEvery +code-creation,Builtin,2,7584,0x1014aeb00,296,ArrayFilterLoopEagerDeoptContinuation +code-creation,Builtin,2,7584,0x1014aec40,788,ArrayFilterLoopLazyDeoptContinuation +code-creation,Builtin,2,7625,0x1014aef60,4384,ArrayFilterLoopContinuation +code-creation,Builtin,2,7625,0x1014b00a0,4276,ArrayFilter +code-creation,Builtin,2,7625,0x1014b1160,232,ArrayFindLoopEagerDeoptContinuation +code-creation,Builtin,2,7625,0x1014b1260,52,ArrayFindLoopLazyDeoptContinuation +code-creation,Builtin,2,7625,0x1014b12a0,352,ArrayFindLoopAfterCallbackLazyDeoptContinuation +code-creation,Builtin,2,7625,0x1014b1420,500,ArrayFindLoopContinuation +code-creation,Builtin,2,7625,0x1014b1620,1432,ArrayPrototypeFind +code-creation,Builtin,2,7625,0x1014b1bc0,232,ArrayFindIndexLoopEagerDeoptContinuation +code-creation,Builtin,2,7625,0x1014b1cc0,52,ArrayFindIndexLoopLazyDeoptContinuation +code-creation,Builtin,2,7625,0x1014b1d00,352,ArrayFindIndexLoopAfterCallbackLazyDeoptContinuation +code-creation,Builtin,2,7667,0x1014b1e80,492,ArrayFindIndexLoopContinuation +code-creation,Builtin,2,7667,0x1014b2080,1432,ArrayPrototypeFindIndex +code-creation,Builtin,2,7667,0x1014b2620,444,ArrayFindLastLoopContinuation +code-creation,Builtin,2,7667,0x1014b27e0,1544,ArrayPrototypeFindLast +code-creation,Builtin,2,7667,0x1014b2e00,436,ArrayFindLastIndexLoopContinuation +code-creation,Builtin,2,7667,0x1014b2fc0,1540,ArrayPrototypeFindLastIndex +code-creation,Builtin,2,7667,0x1014b35e0,240,ArrayForEachLoopEagerDeoptContinuation +code-creation,Builtin,2,7667,0x1014b36e0,240,ArrayForEachLoopLazyDeoptContinuation +code-creation,Builtin,2,7667,0x1014b37e0,4112,ArrayForEachLoopContinuation +code-creation,Builtin,2,7709,0x1014b4800,1296,ArrayForEach +code-creation,Builtin,2,7709,0x1014b4d20,4344,ArrayFrom +code-creation,Builtin,2,7709,0x1014b5e20,192,ArrayIsArray +code-creation,Builtin,2,7709,0x1014b5f00,388,LoadJoinElement_DictionaryElements_0 +code-creation,Builtin,2,7709,0x1014b60a0,60,LoadJoinElement_FastSmiOrObjectElements_0 +code-creation,Builtin,2,7709,0x1014b60e0,160,LoadJoinElement_FastDoubleElements_0 +code-creation,Builtin,2,7709,0x1014b61a0,240,ConvertToLocaleString +code-creation,Builtin,2,7709,0x1014b62a0,792,JoinStackPush +code-creation,Builtin,2,7709,0x1014b65c0,300,JoinStackPop +code-creation,Builtin,2,7709,0x1014b6700,8756,ArrayPrototypeJoin +code-creation,Builtin,2,7709,0x1014b8940,5596,ArrayPrototypeToLocaleString +code-creation,Builtin,2,7750,0x1014b9f20,276,ArrayPrototypeToString +code-creation,Builtin,2,7750,0x1014ba040,8620,TypedArrayPrototypeJoin +code-creation,Builtin,2,7750,0x1014bc200,5412,TypedArrayPrototypeToLocaleString +code-creation,Builtin,2,7750,0x1014bd740,3884,ArrayPrototypeLastIndexOf +code-creation,Builtin,2,7750,0x1014be680,260,ArrayMapPreLoopLazyDeoptContinuation +code-creation,Builtin,2,7750,0x1014be7a0,260,ArrayMapLoopEagerDeoptContinuation +code-creation,Builtin,2,7750,0x1014be8c0,444,ArrayMapLoopLazyDeoptContinuation +code-creation,Builtin,2,7750,0x1014bea80,4084,ArrayMapLoopContinuation +code-creation,Builtin,2,7750,0x1014bfa80,3700,ArrayMap +code-creation,Builtin,2,7750,0x1014c0900,1336,ArrayOf +code-creation,Builtin,2,7792,0x1014c0e40,404,ArrayReduceRightPreLoopEagerDeoptContinuation +code-creation,Builtin,2,7792,0x1014c0fe0,232,ArrayReduceRightLoopEagerDeoptContinuation +code-creation,Builtin,2,7792,0x1014c10e0,232,ArrayReduceRightLoopLazyDeoptContinuation +code-creation,Builtin,2,7792,0x1014c11e0,4092,ArrayReduceRightLoopContinuation +code-creation,Builtin,2,7792,0x1014c21e0,1772,ArrayReduceRight +code-creation,Builtin,2,7792,0x1014c28e0,208,ArrayReducePreLoopEagerDeoptContinuation +code-creation,Builtin,2,7792,0x1014c29c0,232,ArrayReduceLoopEagerDeoptContinuation +code-creation,Builtin,2,7792,0x1014c2ac0,232,ArrayReduceLoopLazyDeoptContinuation +code-creation,Builtin,2,7792,0x1014c2bc0,4156,ArrayReduceLoopContinuation +code-creation,Builtin,2,7834,0x1014c3c00,1488,ArrayReduce +code-creation,Builtin,2,7834,0x1014c41e0,3164,ArrayPrototypeReverse +code-creation,Builtin,2,7834,0x1014c4e40,3360,ArrayPrototypeShift +code-creation,Builtin,2,7834,0x1014c5b80,5140,ArrayPrototypeSlice +code-creation,Builtin,2,7834,0x1014c6fa0,240,ArraySomeLoopEagerDeoptContinuation +code-creation,Builtin,2,7834,0x1014c70a0,532,ArraySomeLoopLazyDeoptContinuation +code-creation,Builtin,2,7834,0x1014c72c0,4180,ArraySomeLoopContinuation +code-creation,Builtin,2,7834,0x1014c8320,1444,ArraySome +code-creation,Builtin,2,7834,0x1014c88e0,12600,ArrayPrototypeSplice +code-creation,Builtin,2,7834,0x1014cba20,1492,GenericArrayToReversed +code-creation,Builtin,2,7834,0x1014cc000,2812,ArrayPrototypeToReversed +code-creation,Builtin,2,7875,0x1014ccb00,5000,ArrayTimSortIntoCopy +code-creation,Builtin,2,7875,0x1014cdea0,1864,ArrayPrototypeToSorted +code-creation,Builtin,2,7875,0x1014ce600,7768,ArrayPrototypeToSpliced +code-creation,Builtin,2,7875,0x1014d0460,2712,ArrayPrototypeUnshift +code-creation,Builtin,2,7875,0x1014d0f00,932,GenericArrayWith +code-creation,Builtin,2,7875,0x1014d12c0,1076,ArrayPrototypeWith +code-creation,Builtin,2,7875,0x1014d1700,308,ArrayBufferPrototypeGetByteLength +code-creation,Builtin,2,7875,0x1014d1840,424,ArrayBufferPrototypeGetMaxByteLength +code-creation,Builtin,2,7875,0x1014d1a00,228,ArrayBufferPrototypeGetResizable +code-creation,Builtin,2,7875,0x1014d1b00,228,ArrayBufferPrototypeGetDetached +code-creation,Builtin,2,7917,0x1014d1c00,308,SharedArrayBufferPrototypeGetMaxByteLength +code-creation,Builtin,2,7917,0x1014d1d40,228,SharedArrayBufferPrototypeGetGrowable +code-creation,Builtin,2,7917,0x1014d1e40,128,ArrayBufferIsView +code-creation,Builtin,2,7917,0x1014d1ee0,220,ToInteger +code-creation,Builtin,2,7917,0x1014d1fc0,3916,FastCreateDataProperty +code-creation,Builtin,2,7917,0x1014d2f20,648,CheckSameObject +code-creation,Builtin,2,7917,0x1014d31c0,1044,BooleanConstructor +code-creation,Builtin,2,7917,0x1014d35e0,188,BooleanPrototypeToString +code-creation,Builtin,2,7917,0x1014d36a0,184,BooleanPrototypeValueOf +code-creation,Builtin,2,7917,0x1014d3760,980,BigIntAddNoThrow +code-creation,Builtin,2,7959,0x1014d3b40,1060,BigIntAdd +code-creation,Builtin,2,7959,0x1014d3f80,980,BigIntSubtractNoThrow +code-creation,Builtin,2,7959,0x1014d4360,1060,BigIntSubtract +code-creation,Builtin,2,7959,0x1014d47a0,320,BigIntMultiplyNoThrow +code-creation,Builtin,2,7959,0x1014d4900,436,BigIntMultiply +code-creation,Builtin,2,7959,0x1014d4ac0,516,BigIntDivideNoThrow +code-creation,Builtin,2,7959,0x1014d4ce0,632,BigIntDivide +code-creation,Builtin,2,7959,0x1014d4f60,428,BigIntModulusNoThrow +code-creation,Builtin,2,7959,0x1014d5120,544,BigIntModulus +code-creation,Builtin,2,7959,0x1014d5360,916,BigIntBitwiseAndNoThrow +code-creation,Builtin,2,7959,0x1014d5700,1108,BigIntBitwiseAnd +code-creation,Builtin,2,8000,0x1014d5b60,880,BigIntBitwiseOrNoThrow +code-creation,Builtin,2,8000,0x1014d5ee0,1044,BigIntBitwiseOr +code-creation,Builtin,2,8000,0x1014d6300,944,BigIntBitwiseXorNoThrow +code-creation,Builtin,2,8000,0x1014d66c0,1136,BigIntBitwiseXor +code-creation,Builtin,2,8000,0x1014d6b40,1120,BigIntShiftLeftNoThrow +code-creation,Builtin,2,8000,0x1014d6fc0,1220,BigIntShiftLeft +code-creation,Builtin,2,8000,0x1014d74a0,1120,BigIntShiftRightNoThrow +code-creation,Builtin,2,8000,0x1014d7920,1220,BigIntShiftRight +code-creation,Builtin,2,8000,0x1014d7e00,132,BigIntEqual +code-creation,Builtin,2,8000,0x1014d7ea0,184,BigIntLessThan +code-creation,Builtin,2,8000,0x1014d7f60,188,BigIntGreaterThan +code-creation,Builtin,2,8042,0x1014d8020,188,BigIntLessThanOrEqual +code-creation,Builtin,2,8042,0x1014d80e0,184,BigIntGreaterThanOrEqual +code-creation,Builtin,2,8042,0x1014d81a0,324,BigIntUnaryMinus +code-creation,Builtin,2,8042,0x1014d8300,1936,ToString +code-creation,Builtin,2,8042,0x1014d8aa0,180,StringPrototypeToString +code-creation,Builtin,2,8042,0x1014d8b60,180,StringPrototypeValueOf +code-creation,Builtin,2,8042,0x1014d8c20,2152,StringToList +code-creation,Builtin,2,8042,0x1014d94a0,800,StringPrototypeCharAt +code-creation,Builtin,2,8042,0x1014d97e0,684,StringPrototypeCharCodeAt +code-creation,Builtin,2,8042,0x1014d9aa0,1188,StringPrototypeCodePointAt +code-creation,Builtin,2,8084,0x1014d9f60,436,StringPrototypeConcat +code-creation,Builtin,2,8084,0x1014da120,1088,StringConstructor +code-creation,Builtin,2,8084,0x1014da580,2012,StringAddConvertLeft +code-creation,Builtin,2,8084,0x1014dad60,2040,StringAddConvertRight +code-creation,Builtin,2,8084,0x1014db560,660,StringCharAt +code-creation,Builtin,2,8084,0x1014db800,20,FastNewClosureBaseline +code-creation,Builtin,2,8084,0x1014db820,264,FastNewFunctionContextEval +code-creation,Builtin,2,8084,0x1014db940,264,FastNewFunctionContextFunction +code-creation,Builtin,2,8084,0x1014dba60,296,CreateRegExpLiteral +code-creation,Builtin,2,8084,0x1014dbba0,1188,CreateShallowArrayLiteral +code-creation,Builtin,2,8084,0x1014dc060,480,CreateEmptyArrayLiteral +code-creation,Builtin,2,8125,0x1014dc260,1932,CreateShallowObjectLiteral +code-creation,Builtin,2,8125,0x1014dca00,452,ObjectConstructor +code-creation,Builtin,2,8125,0x1014dcbe0,224,CreateEmptyLiteralObject +code-creation,Builtin,2,8125,0x1014dcce0,588,NumberConstructor +code-creation,Builtin,2,8125,0x1014dcf40,92,GenericLazyDeoptContinuation +code-creation,Builtin,2,8125,0x1014dcfa0,84,StringToNumber +code-creation,Builtin,2,8125,0x1014dd000,240,NonNumberToNumber +code-creation,Builtin,2,8125,0x1014dd100,288,NonNumberToNumeric +code-creation,Builtin,2,8125,0x1014dd240,60,ToNumeric +code-creation,Builtin,2,8125,0x1014dd280,1388,NumberToString +code-creation,Builtin,2,8125,0x1014dd800,128,ToBoolean +code-creation,Builtin,2,8167,0x1014dd8a0,128,ToBooleanForBaselineJump +code-creation,Builtin,2,8167,0x1014dd940,548,ToLength +code-creation,Builtin,2,8167,0x1014ddb80,1296,ToName +code-creation,Builtin,2,8167,0x1014de0a0,912,ToObject +code-creation,Builtin,2,8167,0x1014de440,276,NonPrimitiveToPrimitive_Default +code-creation,Builtin,2,8167,0x1014de560,276,NonPrimitiveToPrimitive_Number +code-creation,Builtin,2,8167,0x1014de680,636,NonPrimitiveToPrimitive_String +code-creation,Builtin,2,8167,0x1014de900,36,OrdinaryToPrimitive_Number +code-creation,Builtin,2,8167,0x1014de940,412,OrdinaryToPrimitive_Number_Inline +code-creation,Builtin,2,8209,0x1014deae0,412,OrdinaryToPrimitive_String +code-creation,Builtin,2,8209,0x1014dec80,268,FastConsoleAssert +code-creation,Builtin,2,8209,0x1014deda0,208,DataViewPrototypeGetBuffer +code-creation,Builtin,2,8209,0x1014dee80,712,DataViewPrototypeGetByteLength +code-creation,Builtin,2,8209,0x1014df160,432,DataViewPrototypeGetByteOffset +code-creation,Builtin,2,8209,0x1014df320,760,DataViewPrototypeGetUint8 +code-creation,Builtin,2,8209,0x1014df620,760,DataViewPrototypeGetInt8 +code-creation,Builtin,2,8209,0x1014df920,848,DataViewPrototypeGetUint16 +code-creation,Builtin,2,8209,0x1014dfc80,844,DataViewPrototypeGetInt16 +code-creation,Builtin,2,8209,0x1014dffe0,988,DataViewPrototypeGetUint32 +code-creation,Builtin,2,8209,0x1014e03c0,876,DataViewPrototypeGetInt32 +code-creation,Builtin,2,8250,0x1014e0740,1004,DataViewPrototypeGetFloat32 +code-creation,Builtin,2,8250,0x1014e0b40,1068,DataViewPrototypeGetFloat64 +code-creation,Builtin,2,8250,0x1014e0f80,1136,DataViewPrototypeGetBigUint64 +code-creation,Builtin,2,8250,0x1014e1400,1160,DataViewPrototypeGetBigInt64 +code-creation,Builtin,2,8250,0x1014e18a0,1148,DataViewPrototypeSetUint8 +code-creation,Builtin,2,8250,0x1014e1d20,1148,DataViewPrototypeSetInt8 +code-creation,Builtin,2,8250,0x1014e21a0,1236,DataViewPrototypeSetUint16 +code-creation,Builtin,2,8250,0x1014e2680,1236,DataViewPrototypeSetInt16 +code-creation,Builtin,2,8250,0x1014e2b60,1268,DataViewPrototypeSetUint32 +code-creation,Builtin,2,8250,0x1014e3060,1268,DataViewPrototypeSetInt32 +code-creation,Builtin,2,8292,0x1014e3560,1272,DataViewPrototypeSetFloat32 +code-creation,Builtin,2,8292,0x1014e3a60,1332,DataViewPrototypeSetFloat64 +code-creation,Builtin,2,8292,0x1014e3fa0,1192,DataViewPrototypeSetBigUint64 +code-creation,Builtin,2,8292,0x1014e4460,1192,DataViewPrototypeSetBigInt64 +code-creation,Builtin,2,8292,0x1014e4920,952,FinalizationRegistryConstructor +code-creation,Builtin,2,8292,0x1014e4ce0,1084,FinalizationRegistryRegister +code-creation,Builtin,2,8292,0x1014e5120,664,FinalizationRegistryPrototypeCleanupSome +code-creation,Builtin,2,8292,0x1014e53c0,360,FunctionPrototypeHasInstance +code-creation,Builtin,2,8292,0x1014e5540,924,FastFunctionPrototypeBind +code-creation,Builtin,2,8292,0x1014e58e0,100,IncBlockCounter +code-creation,Builtin,2,8334,0x1014e5960,308,GetTemplateObject +code-creation,Builtin,2,8334,0x1014e5aa0,132,ForInNext +code-creation,Builtin,2,8334,0x1014e5b40,184,GetImportMetaObjectBaseline +code-creation,Builtin,2,8334,0x1014e5c00,128,GetIteratorWithFeedback +code-creation,Builtin,2,8334,0x1014e5ca0,124,GetIteratorBaseline +code-creation,Builtin,2,8334,0x1014e5d20,308,CreateAsyncFromSyncIteratorBaseline +code-creation,Builtin,2,8334,0x1014e5e60,952,CallIteratorWithFeedback +code-creation,Builtin,2,8334,0x1014e6220,924,IteratorConstructor +code-creation,Builtin,2,8334,0x1014e65c0,1020,IteratorFrom +code-creation,Builtin,2,8334,0x1014e69c0,184,WrapForValidIteratorPrototypeNext +code-creation,Builtin,2,8334,0x1014e6a80,432,WrapForValidIteratorPrototypeReturn +code-creation,Builtin,2,8375,0x1014e6c40,268,IteratorHelperPrototypeNext +code-creation,Builtin,2,8375,0x1014e6d60,396,IteratorHelperPrototypeReturn +code-creation,Builtin,2,8375,0x1014e6f00,440,IteratorPrototypeMap +code-creation,Builtin,2,8375,0x1014e70c0,1160,IteratorMapHelperNext +code-creation,Builtin,2,8375,0x1014e7560,440,IteratorPrototypeFilter +code-creation,Builtin,2,8375,0x1014e7720,1308,IteratorFilterHelperNext +code-creation,Builtin,2,8375,0x1014e7c40,548,IteratorPrototypeTake +code-creation,Builtin,2,8375,0x1014e7e80,1276,IteratorTakeHelperNext +code-creation,Builtin,2,8375,0x1014e8380,548,IteratorPrototypeDrop +code-creation,Builtin,2,8375,0x1014e85c0,1472,IteratorDropHelperNext +code-creation,Builtin,2,8417,0x1014e8ba0,272,MathAbs +code-creation,Builtin,2,8417,0x1014e8cc0,252,MathCeil +code-creation,Builtin,2,8417,0x1014e8dc0,252,MathFloor +code-creation,Builtin,2,8417,0x1014e8ec0,276,MathRound +code-creation,Builtin,2,8417,0x1014e8fe0,252,MathTrunc +code-creation,Builtin,2,8417,0x1014e90e0,368,MathPow +code-creation,Builtin,2,8417,0x1014e9260,396,MathMax +code-creation,Builtin,2,8417,0x1014e9400,396,MathMin +code-creation,Builtin,2,8417,0x1014e95a0,288,MathAcos +code-creation,Builtin,2,8417,0x1014e96e0,288,MathAcosh +code-creation,Builtin,2,8459,0x1014e9820,288,MathAsin +code-creation,Builtin,2,8459,0x1014e9960,288,MathAsinh +code-creation,Builtin,2,8459,0x1014e9aa0,288,MathAtan +code-creation,Builtin,2,8459,0x1014e9be0,364,MathAtan2 +code-creation,Builtin,2,8459,0x1014e9d60,288,MathAtanh +code-creation,Builtin,2,8459,0x1014e9ea0,288,MathCbrt +code-creation,Builtin,2,8459,0x1014e9fe0,156,MathClz32 +code-creation,Builtin,2,8459,0x1014ea080,288,MathCos +code-creation,Builtin,2,8459,0x1014ea1c0,288,MathCosh +code-creation,Builtin,2,8459,0x1014ea300,288,MathExp +code-creation,Builtin,2,8500,0x1014ea440,288,MathExpm1 +code-creation,Builtin,2,8500,0x1014ea580,260,MathFround +code-creation,Builtin,2,8500,0x1014ea6a0,228,MathImul +code-creation,Builtin,2,8500,0x1014ea7a0,288,MathLog +code-creation,Builtin,2,8500,0x1014ea8e0,288,MathLog1p +code-creation,Builtin,2,8500,0x1014eaa20,288,MathLog10 +code-creation,Builtin,2,8500,0x1014eab60,288,MathLog2 +code-creation,Builtin,2,8500,0x1014eaca0,288,MathSin +code-creation,Builtin,2,8500,0x1014eade0,180,MathSign +code-creation,Builtin,2,8500,0x1014eaea0,288,MathSinh +code-creation,Builtin,2,8500,0x1014eafe0,256,MathSqrt +code-creation,Builtin,2,8542,0x1014eb100,288,MathTan +code-creation,Builtin,2,8542,0x1014eb240,288,MathTanh +code-creation,Builtin,2,8542,0x1014eb380,1032,MathHypot +code-creation,Builtin,2,8542,0x1014eb7a0,328,MathRandom +code-creation,Builtin,2,8542,0x1014eb900,2572,NumberPrototypeToString +code-creation,Builtin,2,8542,0x1014ec320,156,NumberIsFinite +code-creation,Builtin,2,8542,0x1014ec3c0,156,NumberIsInteger +code-creation,Builtin,2,8542,0x1014ec460,152,NumberIsNaN +code-creation,Builtin,2,8542,0x1014ec500,184,NumberIsSafeInteger +tick,0x1957a20c4,8584,0,0x0,6 +tick,0x1956a1a88,8584,0,0x0,6 +tick,0x1957a1074,8584,0,0x0,6 +tick,0x1957a20c4,8584,0,0x0,6 +code-creation,Builtin,2,8584,0x1014ec5c0,184,NumberPrototypeValueOf +code-creation,Builtin,2,8584,0x1014ec680,224,NumberParseFloat +code-creation,Builtin,2,8625,0x1014ec780,188,ParseInt +code-creation,Builtin,2,8625,0x1014ec840,108,NumberParseInt +code-creation,Builtin,2,8625,0x1014ec8c0,732,Add +code-creation,Builtin,2,8625,0x1014ecba0,404,Subtract +code-creation,Builtin,2,8625,0x1014ecd40,528,Multiply +code-creation,Builtin,2,8625,0x1014ecf60,452,Divide +code-creation,Builtin,2,8625,0x1014ed140,508,Modulus +code-creation,Builtin,2,8625,0x1014ed340,512,Exponentiate +code-creation,Builtin,2,8625,0x1014ed560,308,Negate +code-creation,Builtin,2,8625,0x1014ed6a0,152,BitwiseNot +code-creation,Builtin,2,8625,0x1014ed740,120,Decrement +code-creation,Builtin,2,8667,0x1014ed7c0,120,Increment +code-creation,Builtin,2,8667,0x1014ed840,480,ShiftLeft +code-creation,Builtin,2,8667,0x1014eda40,480,ShiftRight +code-creation,Builtin,2,8667,0x1014edc40,536,ShiftRightLogical +code-creation,Builtin,2,8667,0x1014ede60,264,BitwiseAnd +code-creation,Builtin,2,8667,0x1014edf80,264,BitwiseOr +code-creation,Builtin,2,8667,0x1014ee0a0,264,BitwiseXor +code-creation,Builtin,2,8667,0x1014ee1c0,1004,LessThan +code-creation,Builtin,2,8667,0x1014ee5c0,1004,LessThanOrEqual +code-creation,Builtin,2,8667,0x1014ee9c0,1004,GreaterThan +code-creation,Builtin,2,8667,0x1014eedc0,1004,GreaterThanOrEqual +code-creation,Builtin,2,8667,0x1014ef1c0,1132,Equal +code-creation,Builtin,2,8709,0x1014ef640,540,StrictEqual +code-creation,Builtin,2,8709,0x1014ef860,3288,ObjectFromEntries +code-creation,Builtin,2,8709,0x1014f0540,884,CreateObjectWithoutProperties +code-creation,Builtin,2,8709,0x1014f08c0,176,ObjectIsExtensible +code-creation,Builtin,2,8709,0x1014f0980,180,ObjectPreventExtensions +code-creation,Builtin,2,8709,0x1014f0a40,184,ObjectGetPrototypeOf +code-creation,Builtin,2,8709,0x1014f0b00,312,ObjectSetPrototypeOf +code-creation,Builtin,2,8709,0x1014f0c40,92,ObjectPrototypeToString +code-creation,Builtin,2,8709,0x1014f0ca0,116,ObjectPrototypeValueOf +code-creation,Builtin,2,8750,0x1014f0d20,196,ObjectPrototypeToLocaleString +code-creation,Builtin,2,8750,0x1014f0e00,792,FulfillPromise +code-creation,Builtin,2,8750,0x1014f1120,904,RejectPromise +code-creation,Builtin,2,8750,0x1014f14c0,2420,NewPromiseCapability +code-creation,Builtin,2,8750,0x1014f1e40,212,PromiseCapabilityDefaultReject +code-creation,Builtin,2,8750,0x1014f1f20,192,PromiseCapabilityDefaultResolve +code-creation,Builtin,2,8750,0x1014f2000,1332,PerformPromiseThen +code-creation,Builtin,2,8750,0x1014f2540,672,PromiseReject +code-creation,Builtin,2,8750,0x1014f2800,300,PromiseGetCapabilitiesExecutor +code-creation,Builtin,2,8750,0x1014f2940,140,PromiseConstructorLazyDeoptContinuation +code-creation,Builtin,2,8792,0x1014f29e0,4376,PromiseAll +code-creation,Builtin,2,8792,0x1014f3b00,4700,PromiseAllSettled +code-creation,Builtin,2,8792,0x1014f4d60,1088,PromiseAllResolveElementClosure +code-creation,Builtin,2,8792,0x1014f51c0,1424,PromiseAllSettledResolveElementClosure +code-creation,Builtin,2,8792,0x1014f5760,1432,PromiseAllSettledRejectElementClosure +code-creation,Builtin,2,8792,0x1014f5d00,1168,PromiseAnyRejectElementClosure +code-creation,Builtin,2,8792,0x1014f61a0,2624,PromiseAny +code-creation,Builtin,2,8792,0x1014f6c00,3072,PromiseConstructor +code-creation,Builtin,2,8834,0x1014f7820,360,PromisePrototypeCatch +code-creation,Builtin,2,8834,0x1014f79a0,108,PromiseValueThunkFinally +code-creation,Builtin,2,8834,0x1014f7a20,108,PromiseThrowerFinally +code-creation,Builtin,2,8834,0x1014f7aa0,1032,PromiseCatchFinally +code-creation,Builtin,2,8834,0x1014f7ec0,1032,PromiseThenFinally +code-creation,Builtin,2,8834,0x1014f82e0,1708,PromisePrototypeFinally +code-creation,Builtin,2,8834,0x1014f89a0,1476,PromiseRace +code-creation,Builtin,2,8834,0x1014f8f80,336,PromiseFulfillReactionJob +code-creation,Builtin,2,8834,0x1014f90e0,432,PromiseRejectReactionJob +code-creation,Builtin,2,8875,0x1014f92a0,172,PromiseResolveTrampoline +code-creation,Builtin,2,8875,0x1014f9360,704,PromiseResolve +code-creation,Builtin,2,8875,0x1014f9640,808,ResolvePromise +code-creation,Builtin,2,8875,0x1014f9980,2304,PromisePrototypeThen +code-creation,Builtin,2,8875,0x1014fa2a0,1264,PromiseResolveThenableJob +code-creation,Builtin,2,8875,0x1014fa7a0,440,ProxyConstructor +code-creation,Builtin,2,8875,0x1014fa960,2416,ProxyDeleteProperty +code-creation,Builtin,2,8875,0x1014fb2e0,2696,ProxyGetProperty +code-creation,Builtin,2,8875,0x1014fbd80,1040,ProxyGetPrototypeOf +code-creation,Builtin,2,8875,0x1014fc1a0,2364,ProxyHasProperty +code-creation,Builtin,2,8875,0x1014fcae0,788,ProxyIsExtensible +code-creation,Builtin,2,8917,0x1014fce00,816,ProxyPreventExtensions +code-creation,Builtin,2,8917,0x1014fd140,1096,ProxyRevocable +code-creation,Builtin,2,8917,0x1014fd5a0,144,ProxyRevoke +code-creation,Builtin,2,8917,0x1014fd640,2852,ProxySetProperty +code-creation,Builtin,2,8917,0x1014fe180,1272,ProxySetPrototypeOf +code-creation,Builtin,2,8917,0x1014fe680,228,ReflectIsExtensible +code-creation,Builtin,2,8917,0x1014fe780,232,ReflectPreventExtensions +code-creation,Builtin,2,8917,0x1014fe880,208,ReflectGetPrototypeOf +code-creation,Builtin,2,8917,0x1014fe960,336,ReflectSetPrototypeOf +code-creation,Builtin,2,8917,0x1014feac0,300,ReflectGet +code-creation,Builtin,2,8917,0x1014fec00,176,ReflectDeleteProperty +code-creation,Builtin,2,8959,0x1014fecc0,164,ReflectHas +code-creation,Builtin,2,8959,0x1014fed80,4396,ReflectGetOwnPropertyDescriptor +code-creation,Builtin,2,8959,0x1014ffec0,4940,RegExpPrototypeExecSlow +code-creation,Builtin,2,8959,0x101501220,4988,RegExpPrototypeExec +code-creation,Builtin,2,8959,0x1015025a0,2420,RegExpPrototypeMatchAll +code-creation,Builtin,2,8959,0x101502f20,8752,RegExpStringIteratorPrototypeNext +code-creation,Builtin,2,8959,0x101505160,8412,RegExpMatchFast +code-creation,Builtin,2,8959,0x101507240,3584,RegExpPrototypeMatch +code-creation,Builtin,2,8959,0x101508060,5948,RegExpReplace +code-creation,Builtin,2,8959,0x1015097a0,532,RegExpPrototypeReplace +code-creation,Builtin,2,9000,0x1015099c0,1364,RegExpSearchFast +code-creation,Builtin,2,9000,0x101509f20,1556,RegExpPrototypeSearch +code-creation,Builtin,2,9000,0x10150a540,212,RegExpPrototypeSourceGetter +code-creation,Builtin,2,9000,0x10150a620,5748,RegExpSplit +code-creation,Builtin,2,9000,0x10150bca0,496,RegExpPrototypeSplit +code-creation,Builtin,2,9000,0x10150bea0,2176,RegExpPrototypeTest +code-creation,Builtin,2,9000,0x10150c740,1284,RegExpPrototypeTestFast +code-creation,Builtin,2,9000,0x10150cc60,236,RegExpPrototypeGlobalGetter +code-creation,Builtin,2,9000,0x10150cd60,244,RegExpPrototypeIgnoreCaseGetter +code-creation,Builtin,2,9000,0x10150ce60,244,RegExpPrototypeMultilineGetter +code-creation,Builtin,2,9042,0x10150cf60,244,RegExpPrototypeHasIndicesGetter +code-creation,Builtin,2,9042,0x10150d060,244,RegExpPrototypeLinearGetter +code-creation,Builtin,2,9042,0x10150d160,244,RegExpPrototypeDotAllGetter +code-creation,Builtin,2,9042,0x10150d260,272,RegExpPrototypeStickyGetter +code-creation,Builtin,2,9042,0x10150d380,272,RegExpPrototypeUnicodeGetter +code-creation,Builtin,2,9042,0x10150d4a0,244,RegExpPrototypeUnicodeSetsGetter +code-creation,Builtin,2,9042,0x10150d5a0,2424,RegExpPrototypeFlagsGetter +code-creation,Builtin,2,9042,0x10150df20,1156,StringPrototypeAt +code-creation,Builtin,2,9042,0x10150e3c0,3312,StringPrototypeEndsWith +code-creation,Builtin,2,9042,0x10150f0c0,468,CreateHTML +code-creation,Builtin,2,9084,0x10150f2a0,172,StringPrototypeAnchor +code-creation,Builtin,2,9084,0x10150f360,148,StringPrototypeBig +code-creation,Builtin,2,9084,0x10150f400,148,StringPrototypeBlink +code-creation,Builtin,2,9084,0x10150f4a0,148,StringPrototypeBold +code-creation,Builtin,2,9084,0x10150f540,180,StringPrototypeFontcolor +code-creation,Builtin,2,9084,0x10150f600,180,StringPrototypeFontsize +code-creation,Builtin,2,9084,0x10150f6c0,148,StringPrototypeFixed +code-creation,Builtin,2,9084,0x10150f760,148,StringPrototypeItalics +code-creation,Builtin,2,9084,0x10150f800,180,StringPrototypeLink +code-creation,Builtin,2,9084,0x10150f8c0,148,StringPrototypeSmall +code-creation,Builtin,2,9084,0x10150f960,148,StringPrototypeStrike +code-creation,Builtin,2,9125,0x10150fa00,148,StringPrototypeSub +code-creation,Builtin,2,9125,0x10150faa0,148,StringPrototypeSup +code-creation,Builtin,2,9125,0x10150fb40,956,StringPrototypeIncludes +code-creation,Builtin,2,9125,0x10150ff00,576,StringPrototypeIndexOf +code-creation,Builtin,2,9125,0x101510160,684,StringPrototypeIsWellFormed +code-creation,Builtin,2,9125,0x101510420,344,StringPrototypeIterator +code-creation,Builtin,2,9125,0x101510580,1668,StringIteratorPrototypeNext +code-creation,Builtin,2,9125,0x101510c20,1420,StringPrototypeMatch +code-creation,Builtin,2,9125,0x1015111c0,1420,StringPrototypeSearch +code-creation,Builtin,2,9125,0x101511760,792,StringPrototypePadStart +code-creation,Builtin,2,9167,0x101511a80,796,StringPrototypePadEnd +code-creation,Builtin,2,9167,0x101511da0,136,StringRepeat +code-creation,Builtin,2,9167,0x101511e40,400,StringPrototypeRepeat +code-creation,Builtin,2,9167,0x101511fe0,10728,StringPrototypeReplaceAll +code-creation,Builtin,2,9167,0x1015149e0,3140,StringPrototypeSlice +code-creation,Builtin,2,9167,0x101515640,3304,StringPrototypeStartsWith +code-creation,Builtin,2,9167,0x101516340,3124,StringPrototypeSubstr +code-creation,Builtin,2,9167,0x101516f80,3096,StringPrototypeSubstring +code-creation,Builtin,2,9167,0x101517ba0,984,StringPrototypeToWellFormed +code-creation,Builtin,2,9167,0x101517f80,6880,StringPrototypeTrim +code-creation,Builtin,2,9209,0x101519a80,6360,StringPrototypeTrimStart +code-creation,Builtin,2,9209,0x10151b360,6008,StringPrototypeTrimEnd +code-creation,Builtin,2,9209,0x10151cae0,188,SymbolPrototypeDescriptionGetter +code-creation,Builtin,2,9209,0x10151cba0,196,SymbolPrototypeToPrimitive +code-creation,Builtin,2,9209,0x10151cc80,208,SymbolPrototypeToString +code-creation,Builtin,2,9209,0x10151cd60,184,SymbolPrototypeValueOf +code-creation,Builtin,2,9209,0x10151ce20,1040,TypedArrayPrototypeAt +code-creation,Builtin,2,9209,0x10151d240,9508,CreateTypedArray +code-creation,Builtin,2,9209,0x10151f780,1676,TypedArrayPrototypeEvery +code-creation,Builtin,2,9250,0x10151fe20,412,TypedArrayPrototypeEntries +code-creation,Builtin,2,9250,0x10151ffc0,4244,TypedArrayPrototypeFilter +code-creation,Builtin,2,9250,0x101521060,1664,TypedArrayPrototypeFind +code-creation,Builtin,2,9250,0x101521700,1668,TypedArrayPrototypeFindIndex +code-creation,Builtin,2,9250,0x101521da0,1644,TypedArrayPrototypeFindLast +code-creation,Builtin,2,9250,0x101522420,1648,TypedArrayPrototypeFindLastIndex +code-creation,Builtin,2,9250,0x101522aa0,1540,TypedArrayPrototypeForEach +code-creation,Builtin,2,9292,0x1015230c0,2740,TypedArrayFrom +code-creation,Builtin,2,9292,0x101523b80,408,TypedArrayPrototypeKeys +code-creation,Builtin,2,9292,0x101523d20,1272,TypedArrayOf +code-creation,Builtin,2,9292,0x101524220,1644,TypedArrayPrototypeReduce +code-creation,Builtin,2,9292,0x1015248a0,1632,TypedArrayPrototypeReduceRight +code-creation,Builtin,2,9334,0x101524f20,3048,TypedArrayPrototypeSet +code-creation,Builtin,2,9334,0x101525b20,3720,TypedArrayPrototypeSlice +code-creation,Builtin,2,9334,0x1015269c0,1664,TypedArrayPrototypeSome +code-creation,Builtin,2,9334,0x101527060,980,TypedArrayMergeSort +code-creation,Builtin,2,9334,0x101527440,2160,TypedArrayPrototypeSort +code-creation,Builtin,2,9334,0x101527cc0,2812,TypedArrayPrototypeSubArray +code-creation,Builtin,2,9334,0x1015287c0,1580,TypedArrayPrototypeToReversed +code-creation,Builtin,2,9334,0x101528e00,3048,TypedArrayPrototypeToSorted +code-creation,Builtin,2,9334,0x101529a00,412,TypedArrayPrototypeValues +code-creation,Builtin,2,9334,0x101529ba0,2824,TypedArrayPrototypeWith +code-creation,Builtin,2,9375,0x10152a6c0,1100,WeakRefConstructor +code-creation,Builtin,2,9375,0x10152ab20,212,WeakRefDeref +code-creation,Builtin,2,9375,0x10152ac00,740,NewSloppyArgumentsElements +code-creation,Builtin,2,9375,0x10152af00,344,NewStrictArgumentsElements +code-creation,Builtin,2,9375,0x10152b060,376,NewRestArgumentsElements +code-creation,Builtin,2,9375,0x10152b1e0,1656,FastNewSloppyArguments +code-creation,Builtin,2,9375,0x10152b860,568,FastNewStrictArguments +code-creation,Builtin,2,9375,0x10152baa0,616,FastNewRestArguments +code-creation,Builtin,2,9375,0x10152bd20,648,StringSlowFlatten +code-creation,Builtin,2,9375,0x10152bfc0,2148,StringIndexOf +code-creation,Builtin,2,9417,0x10152c840,1340,TestTurbofanType +code-creation,Builtin,2,9417,0x10152cd80,208,CheckTurbofanType +code-creation,Builtin,2,9417,0x10152ce60,576,CheckTurboshaftWord32Type +code-creation,Builtin,2,9417,0x10152d0c0,1044,CheckTurboshaftWord64Type +code-creation,Builtin,2,9417,0x10152d4e0,656,CheckTurboshaftFloat32Type +code-creation,Builtin,2,9417,0x10152d780,636,CheckTurboshaftFloat64Type +code-creation,Builtin,2,9417,0x10152da00,8,GenericBuiltinTest_JSAny_0 +code-creation,Builtin,2,9417,0x10152da20,16,TestHelperPlus1 +code-creation,Builtin,2,9417,0x10152da40,16,TestHelperPlus2 +code-creation,Builtin,2,9417,0x10152da60,108,NewSmiBox +code-creation,Builtin,2,9417,0x10152dae0,20,ReturnTwoValues +code-creation,Builtin,2,9459,0x10152db00,44,Load_FastSmiElements_0 +code-creation,Builtin,2,9459,0x10152db40,44,Load_FastObjectElements_0 +code-creation,Builtin,2,9459,0x10152db80,164,Load_FastDoubleElements_0 +code-creation,Builtin,2,9459,0x10152dc40,48,Store_FastSmiElements_0 +code-creation,Builtin,2,9459,0x10152dc80,108,Store_FastObjectElements_0 +code-creation,Builtin,2,9459,0x10152dd00,56,Store_FastDoubleElements_0 +code-creation,Builtin,2,9459,0x10152dd40,52,Delete_FastSmiElements_0 +code-creation,Builtin,2,9459,0x10152dd80,52,Delete_FastObjectElements_0 +code-creation,Builtin,2,9459,0x10152ddc0,52,Delete_FastDoubleElements_0 +code-creation,Builtin,2,9459,0x10152de00,196,SortCompareDefault +code-creation,Builtin,2,9500,0x10152dee0,128,SortCompareUserFn +code-creation,Builtin,2,9500,0x10152df80,12,CanUseSameAccessor_GenericElementsAccessor_0 +code-creation,Builtin,2,9500,0x10152dfa0,328,Copy +code-creation,Builtin,2,9500,0x10152e100,5396,MergeAt +code-creation,Builtin,2,9500,0x10152f620,852,GallopLeft +code-creation,Builtin,2,9500,0x10152f980,888,GallopRight +code-creation,Builtin,2,9500,0x10152fd00,3684,ArrayTimSort +code-creation,Builtin,2,9500,0x101530b80,1768,ArrayPrototypeSort +code-creation,Builtin,2,9500,0x101531280,3936,StringFastLocaleCompare +code-creation,Builtin,2,9500,0x101532200,108,WasmInt32ToHeapNumber +code-creation,Builtin,2,9542,0x101532280,36,WasmFuncRefToJS +code-creation,Builtin,2,9542,0x1015322c0,84,WasmTaggedNonSmiToInt32 +code-creation,Builtin,2,9542,0x101532320,96,WasmTaggedToFloat64 +code-creation,Builtin,2,9542,0x1015323a0,96,WasmMemoryGrow +code-creation,Builtin,2,9542,0x101532420,100,WasmTableInit +code-creation,Builtin,2,9542,0x1015324a0,100,WasmTableCopy +code-creation,Builtin,2,9542,0x101532520,88,WasmTableFill +code-creation,Builtin,2,9542,0x101532580,72,WasmTableGrow +code-creation,Builtin,2,9542,0x1015325e0,120,WasmTableGet +code-creation,Builtin,2,9542,0x101532660,184,WasmTableSet +code-creation,Builtin,2,9542,0x101532720,188,WasmTableGetFuncRef +code-creation,Builtin,2,9584,0x1015327e0,128,WasmTableSetFuncRef +code-creation,Builtin,2,9584,0x101532880,96,WasmRefFunc +code-creation,Builtin,2,9584,0x101532900,172,WasmAllocateFixedArray +code-creation,Builtin,2,9584,0x1015329c0,40,WasmThrow +code-creation,Builtin,2,9584,0x101532a00,56,WasmRethrow +code-creation,Builtin,2,9584,0x101532a40,48,WasmRethrowExplicitContext +code-creation,Builtin,2,9584,0x101532a80,44,WasmTriggerTierUp +code-creation,Builtin,2,9584,0x101532ac0,28,WasmStackGuard +code-creation,Builtin,2,9584,0x101532ae0,28,WasmStackOverflow +code-creation,Builtin,2,9584,0x101532b00,40,WasmTraceMemory +code-creation,Builtin,2,9584,0x101532b40,28,WasmTraceEnter +code-creation,Builtin,2,9625,0x101532b60,40,WasmTraceExit +code-creation,Builtin,2,9625,0x101532ba0,380,WasmAllocateJSArray +code-creation,Builtin,2,9625,0x101532d20,128,WasmAllocateStructWithRtt +code-creation,Builtin,2,9625,0x101532dc0,172,WasmAllocateArray_Uninitialized +code-creation,Builtin,2,9625,0x101532e80,96,WasmArrayNewSegment +code-creation,Builtin,2,9625,0x101532f00,160,WasmArrayCopyWithChecks +code-creation,Builtin,2,9625,0x101532fc0,108,WasmArrayCopy +code-creation,Builtin,2,9625,0x101533040,292,WasmAllocateObjectWrapper +code-creation,Builtin,2,9625,0x101533180,80,WasmSubtypeCheck +code-creation,Builtin,2,9625,0x1015331e0,12,WasmInt32ToNumber +code-creation,Builtin,2,9667,0x101533200,124,WasmUint32ToNumber +code-creation,Builtin,2,9667,0x101533280,128,UintPtr53ToNumber +code-creation,Builtin,2,9667,0x101533320,120,WasmAtomicNotify +code-creation,Builtin,2,9667,0x1015333a0,124,WasmI32AtomicWait +code-creation,Builtin,2,9667,0x101533420,112,WasmI64AtomicWait +code-creation,Builtin,2,9667,0x1015334a0,1352,CallRefIC +code-creation,Builtin,2,9667,0x101533a00,1724,WasmGetOwnProperty +code-creation,Builtin,2,9667,0x1015340c0,80,WasmTrap +code-creation,Builtin,2,9667,0x101534120,12,ThrowWasmTrapUnreachable +code-creation,Builtin,2,9667,0x101534140,12,ThrowWasmTrapMemOutOfBounds +code-creation,Builtin,2,9709,0x101534160,12,ThrowWasmTrapUnalignedAccess +code-creation,Builtin,2,9709,0x101534180,12,ThrowWasmTrapDivByZero +code-creation,Builtin,2,9709,0x1015341a0,12,ThrowWasmTrapDivUnrepresentable +code-creation,Builtin,2,9709,0x1015341c0,12,ThrowWasmTrapRemByZero +code-creation,Builtin,2,9709,0x1015341e0,12,ThrowWasmTrapFloatUnrepresentable +code-creation,Builtin,2,9709,0x101534200,12,ThrowWasmTrapFuncSigMismatch +code-creation,Builtin,2,9709,0x101534220,12,ThrowWasmTrapDataSegmentOutOfBounds +code-creation,Builtin,2,9709,0x101534240,12,ThrowWasmTrapElementSegmentOutOfBounds +code-creation,Builtin,2,9709,0x101534260,12,ThrowWasmTrapTableOutOfBounds +code-creation,Builtin,2,9709,0x101534280,12,ThrowWasmTrapRethrowNull +code-creation,Builtin,2,9750,0x1015342a0,12,ThrowWasmTrapNullDereference +code-creation,Builtin,2,9750,0x1015342c0,12,ThrowWasmTrapIllegalCast +code-creation,Builtin,2,9750,0x1015342e0,12,ThrowWasmTrapArrayOutOfBounds +code-creation,Builtin,2,9750,0x101534300,12,ThrowWasmTrapArrayTooLarge +code-creation,Builtin,2,9750,0x101534320,12,ThrowWasmTrapStringOffsetOutOfBounds +code-creation,Builtin,2,9750,0x101534340,648,ExperimentalWasmConvertArrayToString +code-creation,Builtin,2,9750,0x1015345e0,936,ExperimentalWasmConvertStringToArray +code-creation,Builtin,2,9750,0x1015349a0,136,WasmStringNewWtf8 +code-creation,Builtin,2,9750,0x101534a40,144,WasmStringNewWtf8Array +code-creation,Builtin,2,9792,0x101534ae0,128,WasmStringNewWtf16 +code-creation,Builtin,2,9792,0x101534b80,1064,WasmStringNewWtf16Array +code-creation,Builtin,2,9792,0x101534fc0,80,WasmStringAsWtf16 +code-creation,Builtin,2,9792,0x101535020,44,WasmStringConst +code-creation,Builtin,2,9792,0x101535060,88,WasmStringMeasureUtf8 +code-creation,Builtin,2,9792,0x1015350c0,88,WasmStringMeasureWtf8 +code-creation,Builtin,2,9792,0x101535120,148,WasmStringEncodeWtf8 +code-creation,Builtin,2,9792,0x1015351c0,132,WasmStringEncodeWtf8Array +code-creation,Builtin,2,9792,0x101535260,136,WasmStringEncodeWtf16 +code-creation,Builtin,2,9792,0x101535300,824,WasmStringEncodeWtf16Array +code-creation,Builtin,2,9834,0x101535640,72,ThrowToLowerCaseCalledOnNull +code-creation,Builtin,2,9834,0x1015356a0,20,WasmStringConcat +code-creation,Builtin,2,9834,0x1015356c0,104,WasmStringEqual +code-creation,Builtin,2,9834,0x101535740,124,WasmStringIsUSVSequence +code-creation,Builtin,2,9834,0x1015357c0,40,WasmStringAsWtf8 +code-creation,Builtin,2,9834,0x101535800,332,WasmStringViewWtf8Advance +code-creation,Builtin,2,9834,0x101535960,212,WasmStringViewWtf8Encode +code-creation,Builtin,2,9875,0x101535a40,180,WasmStringViewWtf8Slice +code-creation,Builtin,2,9875,0x101535b00,588,WasmStringViewWtf16GetCodeUnit +code-creation,Builtin,2,9875,0x101535d60,176,WasmStringViewWtf16Encode +code-creation,Builtin,2,9875,0x101535e20,2752,WasmStringViewWtf16Slice +code-creation,Builtin,2,9875,0x101536900,112,WasmStringAsIter +code-creation,Builtin,2,9875,0x101536980,1200,WasmStringViewIterNext +code-creation,Builtin,2,9875,0x101536e40,1292,WasmStringViewIterAdvance +code-creation,Builtin,2,9875,0x101537360,1252,WasmStringViewIterRewind +code-creation,Builtin,2,9917,0x101537860,4132,WasmStringViewIterSlice +code-creation,Builtin,2,9917,0x1015388a0,72,WasmStringFromCodePoint +code-creation,Builtin,2,9917,0x101538900,64,WasmStringHash +code-creation,Builtin,2,9917,0x101538960,48,WasmExternInternalize +code-creation,Builtin,2,9917,0x1015389a0,156,LoadJoinElement_GenericElementsAccessor_0 +code-creation,Builtin,2,9917,0x101538a40,28,LoadJoinTypedElement_Int32Elements_0 +code-creation,Builtin,2,9917,0x101538a60,124,LoadJoinTypedElement_Float32Elements_0 +code-creation,Builtin,2,9917,0x101538ae0,120,LoadJoinTypedElement_Float64Elements_0 +code-creation,Builtin,2,9917,0x101538b60,28,LoadJoinTypedElement_Uint8ClampedElements_0 +code-creation,Builtin,2,9917,0x101538b80,232,LoadJoinTypedElement_BigUint64Elements_0 +code-creation,Builtin,2,9959,0x101538c80,264,LoadJoinTypedElement_BigInt64Elements_0 +code-creation,Builtin,2,9959,0x101538da0,28,LoadJoinTypedElement_Uint8Elements_0 +code-creation,Builtin,2,9959,0x101538dc0,28,LoadJoinTypedElement_Int8Elements_0 +code-creation,Builtin,2,9959,0x101538de0,28,LoadJoinTypedElement_Uint16Elements_0 +code-creation,Builtin,2,9959,0x101538e00,28,LoadJoinTypedElement_Int16Elements_0 +code-creation,Builtin,2,9959,0x101538e20,140,LoadJoinTypedElement_Uint32Elements_0 +code-creation,Builtin,2,9959,0x101538ec0,12,GenericBuiltinTest_Smi_0 +code-creation,Builtin,2,9959,0x101538ee0,52,CanUseSameAccessor_FastDoubleElements_0 +code-creation,Builtin,2,9959,0x101538f20,52,CanUseSameAccessor_FastSmiElements_0 +code-creation,Builtin,2,10000,0x101538f60,52,CanUseSameAccessor_FastObjectElements_0 +code-creation,Builtin,2,10000,0x101538fa0,40,LoadNoHasPropertyCheck_GenericElementsAccessor_0 +code-creation,Builtin,2,10000,0x101538fe0,3880,Load_GenericElementsAccessor_0 +code-creation,Builtin,2,10000,0x101539f20,44,Store_GenericElementsAccessor_0 +code-creation,Builtin,2,10000,0x101539f60,48,Delete_GenericElementsAccessor_0 +code-creation,Builtin,2,10000,0x101539fa0,28,LoadTypedElement_Int32Elements_0 +code-creation,Builtin,2,10000,0x101539fc0,180,StoreTypedElementNumeric_Int32Elements_0 +code-creation,Builtin,2,10000,0x10153a080,536,StoreTypedElementJSAny_Int32Elements_0 +code-creation,Builtin,2,10042,0x10153a2a0,124,LoadTypedElement_Float32Elements_0 +code-creation,Builtin,2,10042,0x10153a320,36,StoreTypedElementNumeric_Float32Elements_0 +code-creation,Builtin,2,10042,0x10153a360,540,StoreTypedElementJSAny_Float32Elements_0 +code-creation,Builtin,2,10042,0x10153a580,120,LoadTypedElement_Float64Elements_0 +code-creation,Builtin,2,10042,0x10153a600,32,StoreTypedElementNumeric_Float64Elements_0 +code-creation,Builtin,2,10042,0x10153a640,536,StoreTypedElementJSAny_Float64Elements_0 +code-creation,Builtin,2,10084,0x10153a860,28,LoadTypedElement_Uint8ClampedElements_0 +code-creation,Builtin,2,10084,0x10153a880,32,StoreTypedElementNumeric_Uint8ClampedElements_0 +code-creation,Builtin,2,10084,0x10153a8c0,616,StoreTypedElementJSAny_Uint8ClampedElements_0 +code-creation,Builtin,2,10084,0x10153ab40,232,LoadTypedElement_BigUint64Elements_0 +code-creation,Builtin,2,10084,0x10153ac40,72,StoreTypedElementNumeric_BigUint64Elements_0 +code-creation,Builtin,2,10084,0x10153aca0,572,StoreTypedElementJSAny_BigUint64Elements_0 +code-creation,Builtin,2,10084,0x10153aee0,264,LoadTypedElement_BigInt64Elements_0 +code-creation,Builtin,2,10084,0x10153b000,72,StoreTypedElementNumeric_BigInt64Elements_0 +code-creation,Builtin,2,10084,0x10153b060,572,StoreTypedElementJSAny_BigInt64Elements_0 +code-creation,Builtin,2,10125,0x10153b2a0,28,LoadTypedElement_Uint8Elements_0 +code-creation,Builtin,2,10125,0x10153b2c0,32,StoreTypedElementNumeric_Uint8Elements_0 +code-creation,Builtin,2,10125,0x10153b300,536,StoreTypedElementJSAny_Uint8Elements_0 +code-creation,Builtin,2,10125,0x10153b520,28,LoadTypedElement_Int8Elements_0 +code-creation,Builtin,2,10125,0x10153b540,32,StoreTypedElementNumeric_Int8Elements_0 +code-creation,Builtin,2,10125,0x10153b580,536,StoreTypedElementJSAny_Int8Elements_0 +code-creation,Builtin,2,10125,0x10153b7a0,28,LoadTypedElement_Uint16Elements_0 +code-creation,Builtin,2,10125,0x10153b7c0,32,StoreTypedElementNumeric_Uint16Elements_0 +code-creation,Builtin,2,10125,0x10153b800,536,StoreTypedElementJSAny_Uint16Elements_0 +code-creation,Builtin,2,10125,0x10153ba20,28,LoadTypedElement_Int16Elements_0 +code-creation,Builtin,2,10167,0x10153ba40,32,StoreTypedElementNumeric_Int16Elements_0 +code-creation,Builtin,2,10167,0x10153ba80,536,StoreTypedElementJSAny_Int16Elements_0 +code-creation,Builtin,2,10167,0x10153bca0,140,LoadTypedElement_Uint32Elements_0 +code-creation,Builtin,2,10167,0x10153bd40,180,StoreTypedElementNumeric_Uint32Elements_0 +code-creation,Builtin,2,10167,0x10153be00,536,StoreTypedElementJSAny_Uint32Elements_0 +code-creation,Builtin,2,10167,0x10153c020,8,CollatorConstructor +code-creation,Builtin,2,10167,0x10153c040,8,CollatorInternalCompare +code-creation,Builtin,2,10167,0x10153c060,8,CollatorPrototypeCompare +code-creation,Builtin,2,10167,0x10153c080,8,CollatorSupportedLocalesOf +code-creation,Builtin,2,10209,0x10153c0a0,8,CollatorPrototypeResolvedOptions +code-creation,Builtin,2,10209,0x10153c0c0,8,DatePrototypeToLocaleDateString +code-creation,Builtin,2,10209,0x10153c0e0,8,DatePrototypeToLocaleString +code-creation,Builtin,2,10209,0x10153c100,8,DatePrototypeToLocaleTimeString +code-creation,Builtin,2,10209,0x10153c120,8,DateTimeFormatConstructor +code-creation,Builtin,2,10209,0x10153c140,8,DateTimeFormatInternalFormat +code-creation,Builtin,2,10209,0x10153c160,8,DateTimeFormatPrototypeFormat +code-creation,Builtin,2,10209,0x10153c180,8,DateTimeFormatPrototypeFormatRange +code-creation,Builtin,2,10209,0x10153c1a0,8,DateTimeFormatPrototypeFormatRangeToParts +code-creation,Builtin,2,10209,0x10153c1c0,8,DateTimeFormatPrototypeFormatToParts +code-creation,Builtin,2,10250,0x10153c1e0,8,DateTimeFormatPrototypeResolvedOptions +code-creation,Builtin,2,10250,0x10153c200,8,DateTimeFormatSupportedLocalesOf +code-creation,Builtin,2,10250,0x10153c220,8,DisplayNamesConstructor +code-creation,Builtin,2,10250,0x10153c240,8,DisplayNamesPrototypeOf +code-creation,Builtin,2,10250,0x10153c260,8,DisplayNamesPrototypeResolvedOptions +code-creation,Builtin,2,10250,0x10153c280,8,DisplayNamesSupportedLocalesOf +code-creation,Builtin,2,10250,0x10153c2a0,8,DurationFormatConstructor +code-creation,Builtin,2,10250,0x10153c2c0,8,DurationFormatPrototypeFormat +code-creation,Builtin,2,10250,0x10153c2e0,8,DurationFormatPrototypeFormatToParts +code-creation,Builtin,2,10292,0x10153c300,8,DurationFormatPrototypeResolvedOptions +code-creation,Builtin,2,10292,0x10153c320,8,DurationFormatSupportedLocalesOf +code-creation,Builtin,2,10292,0x10153c340,8,IntlGetCanonicalLocales +code-creation,Builtin,2,10292,0x10153c360,8,IntlSupportedValuesOf +code-creation,Builtin,2,10292,0x10153c380,8,ListFormatConstructor +code-creation,Builtin,2,10292,0x10153c3a0,240,ListFormatPrototypeFormat +code-creation,Builtin,2,10292,0x10153c4a0,240,ListFormatPrototypeFormatToParts +code-creation,Builtin,2,10292,0x10153c5a0,8,ListFormatPrototypeResolvedOptions +code-creation,Builtin,2,10292,0x10153c5c0,8,ListFormatSupportedLocalesOf +code-creation,Builtin,2,10292,0x10153c5e0,8,LocaleConstructor +code-creation,Builtin,2,10334,0x10153c600,8,LocalePrototypeBaseName +code-creation,Builtin,2,10334,0x10153c620,8,LocalePrototypeCalendar +code-creation,Builtin,2,10334,0x10153c640,8,LocalePrototypeCalendars +code-creation,Builtin,2,10334,0x10153c660,8,LocalePrototypeCaseFirst +code-creation,Builtin,2,10334,0x10153c680,8,LocalePrototypeCollation +code-creation,Builtin,2,10334,0x10153c6a0,8,LocalePrototypeCollations +code-creation,Builtin,2,10334,0x10153c6c0,8,LocalePrototypeHourCycle +code-creation,Builtin,2,10334,0x10153c6e0,8,LocalePrototypeHourCycles +code-creation,Builtin,2,10334,0x10153c700,8,LocalePrototypeLanguage +code-creation,Builtin,2,10334,0x10153c720,8,LocalePrototypeMaximize +code-creation,Builtin,2,10375,0x10153c740,8,LocalePrototypeMinimize +code-creation,Builtin,2,10375,0x10153c760,8,LocalePrototypeNumeric +code-creation,Builtin,2,10375,0x10153c780,8,LocalePrototypeNumberingSystem +code-creation,Builtin,2,10375,0x10153c7a0,8,LocalePrototypeNumberingSystems +code-creation,Builtin,2,10375,0x10153c7c0,8,LocalePrototypeRegion +code-creation,Builtin,2,10375,0x10153c7e0,8,LocalePrototypeScript +code-creation,Builtin,2,10375,0x10153c800,8,LocalePrototypeTextInfo +code-creation,Builtin,2,10375,0x10153c820,8,LocalePrototypeTimeZones +code-creation,Builtin,2,10375,0x10153c840,8,LocalePrototypeToString +code-creation,Builtin,2,10375,0x10153c860,8,LocalePrototypeWeekInfo +code-creation,Builtin,2,10375,0x10153c880,8,NumberFormatConstructor +code-creation,Builtin,2,10417,0x10153c8a0,8,NumberFormatInternalFormatNumber +code-creation,Builtin,2,10417,0x10153c8c0,8,NumberFormatPrototypeFormatNumber +code-creation,Builtin,2,10417,0x10153c8e0,8,NumberFormatPrototypeFormatRange +code-creation,Builtin,2,10417,0x10153c900,8,NumberFormatPrototypeFormatRangeToParts +code-creation,Builtin,2,10417,0x10153c920,8,NumberFormatPrototypeFormatToParts +code-creation,Builtin,2,10417,0x10153c940,8,NumberFormatPrototypeResolvedOptions +code-creation,Builtin,2,10417,0x10153c960,8,NumberFormatSupportedLocalesOf +code-creation,Builtin,2,10417,0x10153c980,8,PluralRulesConstructor +code-creation,Builtin,2,10417,0x10153c9a0,8,PluralRulesPrototypeResolvedOptions +code-creation,Builtin,2,10459,0x10153c9c0,8,PluralRulesPrototypeSelect +code-creation,Builtin,2,10459,0x10153c9e0,8,PluralRulesPrototypeSelectRange +code-creation,Builtin,2,10459,0x10153ca00,8,PluralRulesSupportedLocalesOf +code-creation,Builtin,2,10459,0x10153ca20,8,RelativeTimeFormatConstructor +code-creation,Builtin,2,10459,0x10153ca40,8,RelativeTimeFormatPrototypeFormat +code-creation,Builtin,2,10459,0x10153ca60,8,RelativeTimeFormatPrototypeFormatToParts +code-creation,Builtin,2,10459,0x10153ca80,8,RelativeTimeFormatPrototypeResolvedOptions +code-creation,Builtin,2,10459,0x10153caa0,8,RelativeTimeFormatSupportedLocalesOf +code-creation,Builtin,2,10459,0x10153cac0,8,SegmenterConstructor +code-creation,Builtin,2,10459,0x10153cae0,8,SegmenterPrototypeResolvedOptions +code-creation,Builtin,2,10500,0x10153cb00,8,SegmenterPrototypeSegment +code-creation,Builtin,2,10500,0x10153cb20,8,SegmenterSupportedLocalesOf +code-creation,Builtin,2,10500,0x10153cb40,8,SegmentIteratorPrototypeNext +code-creation,Builtin,2,10500,0x10153cb60,8,SegmentsPrototypeContaining +code-creation,Builtin,2,10500,0x10153cb80,8,SegmentsPrototypeIterator +code-creation,Builtin,2,10500,0x10153cba0,8,StringPrototypeNormalizeIntl +code-creation,Builtin,2,10500,0x10153cbc0,1156,StringPrototypeToLocaleLowerCase +code-creation,Builtin,2,10500,0x10153d060,8,StringPrototypeToLocaleUpperCase +code-creation,Builtin,2,10500,0x10153d080,216,StringPrototypeToLowerCaseIntl +code-creation,Builtin,2,10542,0x10153d160,8,StringPrototypeToUpperCaseIntl +code-creation,Builtin,2,10542,0x10153d180,728,StringToLowerCaseIntl +code-creation,Builtin,2,10542,0x10153d460,8,TemporalCalendarPrototypeEra +code-creation,Builtin,2,10542,0x10153d480,8,TemporalCalendarPrototypeEraYear +code-creation,Builtin,2,10542,0x10153d4a0,8,TemporalPlainDatePrototypeEra +code-creation,Builtin,2,10542,0x10153d4c0,8,TemporalPlainDatePrototypeEraYear +code-creation,Builtin,2,10542,0x10153d4e0,8,TemporalPlainDateTimePrototypeEra +code-creation,Builtin,2,10542,0x10153d500,8,TemporalPlainDateTimePrototypeEraYear +code-creation,Builtin,2,10542,0x10153d520,8,TemporalPlainYearMonthPrototypeEra +code-creation,Builtin,2,10542,0x10153d540,8,TemporalPlainYearMonthPrototypeEraYear +code-creation,Builtin,2,10584,0x10153d560,8,TemporalZonedDateTimePrototypeEra +code-creation,Builtin,2,10584,0x10153d580,8,TemporalZonedDateTimePrototypeEraYear +code-creation,Builtin,2,10584,0x10153d5a0,8,V8BreakIteratorConstructor +code-creation,Builtin,2,10584,0x10153d5c0,8,V8BreakIteratorInternalAdoptText +code-creation,Builtin,2,10584,0x10153d5e0,8,V8BreakIteratorInternalBreakType +code-creation,Builtin,2,10584,0x10153d600,8,V8BreakIteratorInternalCurrent +code-creation,Builtin,2,10584,0x10153d620,8,V8BreakIteratorInternalFirst +code-creation,Builtin,2,10584,0x10153d640,8,V8BreakIteratorInternalNext +code-creation,Builtin,2,10584,0x10153d660,8,V8BreakIteratorPrototypeAdoptText +code-creation,Builtin,2,10584,0x10153d680,8,V8BreakIteratorPrototypeBreakType +code-creation,Builtin,2,10625,0x10153d6a0,8,V8BreakIteratorPrototypeCurrent +code-creation,Builtin,2,10625,0x10153d6c0,8,V8BreakIteratorPrototypeFirst +code-creation,Builtin,2,10625,0x10153d6e0,8,V8BreakIteratorPrototypeNext +code-creation,Builtin,2,10625,0x10153d700,8,V8BreakIteratorPrototypeResolvedOptions +code-creation,Builtin,2,10625,0x10153d720,8,V8BreakIteratorSupportedLocalesOf +code-creation,BytecodeHandler,0,10625,0x10153d740,28,Wide +code-creation,BytecodeHandler,0,10625,0x10153d760,28,ExtraWide +code-creation,BytecodeHandler,0,10625,0x10153d780,124,DebugBreakWide +code-creation,BytecodeHandler,0,10625,0x10153d800,124,DebugBreakExtraWide +code-creation,BytecodeHandler,0,10625,0x10153d880,188,DebugBreak0 +code-creation,BytecodeHandler,0,10667,0x10153d940,124,DebugBreak1 +code-creation,BytecodeHandler,0,10667,0x10153d9c0,124,DebugBreak2 +code-creation,BytecodeHandler,0,10667,0x10153da40,124,DebugBreak3 +code-creation,BytecodeHandler,0,10667,0x10153dac0,124,DebugBreak4 +code-creation,BytecodeHandler,0,10667,0x10153db40,124,DebugBreak5 +code-creation,BytecodeHandler,0,10667,0x10153dbc0,124,DebugBreak6 +code-creation,BytecodeHandler,0,10667,0x10153dc40,44,Ldar +code-creation,BytecodeHandler,0,10667,0x10153dc80,76,LdaZero +code-creation,BytecodeHandler,0,10667,0x10153dce0,84,LdaSmi +code-creation,BytecodeHandler,0,10667,0x10153dd40,76,LdaUndefined +code-creation,BytecodeHandler,0,10667,0x10153dda0,76,LdaNull +code-creation,BytecodeHandler,0,10709,0x10153de00,76,LdaTheHole +code-creation,BytecodeHandler,0,10709,0x10153de60,28,LdaTrue +code-creation,BytecodeHandler,0,10709,0x10153de80,28,LdaFalse +code-creation,BytecodeHandler,0,10709,0x10153dea0,92,LdaConstant +code-creation,BytecodeHandler,0,10709,0x10153df00,176,LdaContextSlot +code-creation,BytecodeHandler,0,10709,0x10153dfc0,176,LdaImmutableContextSlot +code-creation,BytecodeHandler,0,10709,0x10153e080,108,LdaCurrentContextSlot +code-creation,BytecodeHandler,0,10709,0x10153e100,108,LdaImmutableCurrentContextSlot +code-creation,BytecodeHandler,0,10709,0x10153e180,44,Star +code-creation,BytecodeHandler,0,10709,0x10153e1c0,60,Mov +code-creation,BytecodeHandler,0,10709,0x10153e200,52,PushContext +code-creation,BytecodeHandler,0,10750,0x10153e240,48,PopContext +code-creation,BytecodeHandler,0,10750,0x10153e280,64,TestReferenceEqual +code-creation,BytecodeHandler,0,10750,0x10153e2e0,64,TestUndetectable +code-creation,BytecodeHandler,0,10750,0x10153e340,52,TestNull +code-creation,BytecodeHandler,0,10750,0x10153e380,52,TestUndefined +code-creation,BytecodeHandler,0,10750,0x10153e3c0,388,TestTypeOf +code-creation,BytecodeHandler,0,10750,0x10153e560,6164,LdaGlobal +code-creation,BytecodeHandler,0,10750,0x10153fd80,4648,LdaGlobalInsideTypeof +code-creation,BytecodeHandler,0,10750,0x101540fc0,184,StaGlobal +code-creation,BytecodeHandler,0,10750,0x101541080,192,StaContextSlot +code-creation,BytecodeHandler,0,10792,0x101541160,124,StaCurrentContextSlot +code-creation,BytecodeHandler,0,10792,0x1015411e0,152,LdaLookupSlot +code-creation,BytecodeHandler,0,10792,0x101541280,316,LdaLookupContextSlot +code-creation,BytecodeHandler,0,10792,0x1015413c0,4992,LdaLookupGlobalSlot +code-creation,BytecodeHandler,0,10792,0x101542760,152,LdaLookupSlotInsideTypeof +code-creation,BytecodeHandler,0,10792,0x101542800,316,LdaLookupContextSlotInsideTypeof +code-creation,BytecodeHandler,0,10792,0x101542940,4908,LdaLookupGlobalSlotInsideTypeof +code-creation,BytecodeHandler,0,10792,0x101543c80,256,StaLookupSlot +code-creation,BytecodeHandler,0,10792,0x101543da0,5260,GetNamedProperty +code-creation,BytecodeHandler,0,10792,0x101545240,208,GetNamedPropertyFromSuper +code-creation,BytecodeHandler,0,10792,0x101545320,232,GetKeyedProperty +code-creation,BytecodeHandler,0,10834,0x101545420,228,LdaModuleVariable +code-creation,BytecodeHandler,0,10834,0x101545520,348,StaModuleVariable +code-creation,BytecodeHandler,0,10834,0x101545680,200,SetNamedProperty +code-creation,BytecodeHandler,0,10834,0x101545760,200,DefineNamedOwnProperty +code-creation,BytecodeHandler,0,10834,0x101545840,192,SetKeyedProperty +code-creation,BytecodeHandler,0,10834,0x101545920,212,DefineKeyedOwnProperty +code-creation,BytecodeHandler,0,10834,0x101545a00,192,StaInArrayLiteral +code-creation,BytecodeHandler,0,10834,0x101545ae0,228,DefineKeyedOwnPropertyInLiteral +code-creation,BytecodeHandler,0,10834,0x101545be0,1424,Add +code-creation,BytecodeHandler,0,10834,0x101546180,1396,Sub +code-creation,BytecodeHandler,0,10875,0x101546700,1500,Mul +code-creation,BytecodeHandler,0,10875,0x101546ce0,1532,Div +code-creation,BytecodeHandler,0,10875,0x1015472e0,1464,Mod +code-creation,BytecodeHandler,0,10875,0x1015478a0,864,Exp +code-creation,BytecodeHandler,0,10875,0x101547c20,1624,BitwiseOr +code-creation,BytecodeHandler,0,10875,0x101548280,1624,BitwiseXor +code-creation,BytecodeHandler,0,10875,0x1015488e0,1624,BitwiseAnd +code-creation,BytecodeHandler,0,10875,0x101548f40,1092,ShiftLeft +code-creation,BytecodeHandler,0,10875,0x1015493a0,1092,ShiftRight +code-creation,BytecodeHandler,0,10875,0x101549800,1156,ShiftRightLogical +code-creation,BytecodeHandler,0,10875,0x101549ca0,1344,AddSmi +code-creation,BytecodeHandler,0,10917,0x10154a200,1368,SubSmi +code-creation,BytecodeHandler,0,10917,0x10154a760,1420,MulSmi +code-creation,BytecodeHandler,0,10917,0x10154ad00,1568,DivSmi +code-creation,BytecodeHandler,0,10917,0x10154b340,1392,ModSmi +code-creation,BytecodeHandler,0,10917,0x10154b8c0,776,ExpSmi +code-creation,BytecodeHandler,0,10917,0x10154bbe0,468,BitwiseOrSmi +code-creation,BytecodeHandler,0,10917,0x10154bdc0,468,BitwiseXorSmi +code-creation,BytecodeHandler,0,10917,0x10154bfa0,468,BitwiseAndSmi +code-creation,BytecodeHandler,0,10917,0x10154c180,496,ShiftLeftSmi +code-creation,BytecodeHandler,0,10917,0x10154c380,476,ShiftRightSmi +code-creation,BytecodeHandler,0,10917,0x10154c560,780,ShiftRightLogicalSmi +code-creation,BytecodeHandler,0,10959,0x10154c880,668,Inc +code-creation,BytecodeHandler,0,10959,0x10154cb20,668,Dec +code-creation,BytecodeHandler,0,10959,0x10154cdc0,640,Negate +code-creation,BytecodeHandler,0,10959,0x10154d060,476,BitwiseNot +code-creation,BytecodeHandler,0,10959,0x10154d240,144,ToBooleanLogicalNot +code-creation,BytecodeHandler,0,10959,0x10154d2e0,44,LogicalNot +code-creation,BytecodeHandler,0,10959,0x10154d320,216,TypeOf +code-creation,BytecodeHandler,0,10959,0x10154d400,136,DeletePropertyStrict +code-creation,BytecodeHandler,0,11000,0x10154d4a0,136,DeletePropertySloppy +code-creation,BytecodeHandler,0,11000,0x10154d540,52,GetSuperConstructor +code-creation,BytecodeHandler,0,11000,0x10154d580,368,FindNonDefaultConstructorOrConstruct +code-creation,BytecodeHandler,0,11000,0x10154d700,916,CallAnyReceiver +code-creation,BytecodeHandler,0,11000,0x10154daa0,916,CallProperty +code-creation,BytecodeHandler,0,11000,0x10154de40,936,CallProperty0 +code-creation,BytecodeHandler,0,11000,0x10154e200,948,CallProperty1 +code-creation,BytecodeHandler,0,11000,0x10154e5c0,968,CallProperty2 +code-creation,BytecodeHandler,0,11000,0x10154e9a0,920,CallUndefinedReceiver +code-creation,BytecodeHandler,0,11000,0x10154ed40,912,CallUndefinedReceiver0 +code-creation,BytecodeHandler,0,11042,0x10154f0e0,924,CallUndefinedReceiver1 +code-creation,BytecodeHandler,0,11042,0x10154f480,944,CallUndefinedReceiver2 +code-creation,BytecodeHandler,0,11042,0x10154f840,916,CallWithSpread +code-creation,BytecodeHandler,0,11042,0x10154fbe0,144,CallRuntime +code-creation,BytecodeHandler,0,11042,0x10154fc80,188,CallRuntimeForPair +code-creation,BytecodeHandler,0,11042,0x10154fd40,100,CallJSRuntime +code-creation,BytecodeHandler,0,11042,0x10154fdc0,1404,InvokeIntrinsic +code-creation,BytecodeHandler,0,11042,0x101550340,944,Construct +code-creation,BytecodeHandler,0,11042,0x101550700,492,ConstructWithSpread +code-creation,BytecodeHandler,0,11042,0x101550900,2268,TestEqual +code-creation,BytecodeHandler,0,11084,0x1015511e0,1160,TestEqualStrict +code-creation,BytecodeHandler,0,11084,0x101551680,1740,TestLessThan +code-creation,BytecodeHandler,0,11084,0x101551d60,1740,TestGreaterThan +code-creation,BytecodeHandler,0,11084,0x101552440,1740,TestLessThanOrEqual +code-creation,BytecodeHandler,0,11084,0x101552b20,1740,TestGreaterThanOrEqual +code-creation,BytecodeHandler,0,11084,0x101553200,848,TestInstanceOf +code-creation,BytecodeHandler,0,11084,0x101553560,176,TestIn +code-creation,BytecodeHandler,0,11084,0x101553620,132,ToName +code-creation,BytecodeHandler,0,11084,0x1015536c0,236,ToNumber +code-creation,BytecodeHandler,0,11084,0x1015537c0,256,ToNumeric +code-creation,BytecodeHandler,0,11125,0x1015538e0,132,ToObject +code-creation,BytecodeHandler,0,11125,0x101553980,156,ToString +code-creation,BytecodeHandler,0,11125,0x101553a20,444,CreateRegExpLiteral +code-creation,BytecodeHandler,0,11125,0x101553be0,1576,CreateArrayLiteral +code-creation,BytecodeHandler,0,11125,0x101554220,108,CreateArrayFromIterable +tick,0x1957a20c4,11167,0,0x0,6 +tick,0x1957a20c4,11167,0,0x0,6 +code-creation,BytecodeHandler,0,11167,0x1015542a0,776,CreateEmptyArrayLiteral +code-creation,BytecodeHandler,0,11167,0x1015545c0,2356,CreateObjectLiteral +code-creation,BytecodeHandler,0,11167,0x101554f00,272,CreateEmptyObjectLiteral +code-creation,BytecodeHandler,0,11167,0x101555020,192,CloneObject +code-creation,BytecodeHandler,0,11209,0x101555100,240,GetTemplateObject +code-creation,BytecodeHandler,0,11209,0x101555200,380,CreateClosure +code-creation,BytecodeHandler,0,11209,0x101555380,140,CreateBlockContext +code-creation,BytecodeHandler,0,11209,0x101555420,152,CreateCatchContext +code-creation,BytecodeHandler,0,11209,0x1015554c0,344,CreateFunctionContext +code-creation,BytecodeHandler,0,11209,0x101555620,344,CreateEvalContext +code-creation,BytecodeHandler,0,11209,0x101555780,152,CreateWithContext +code-creation,BytecodeHandler,0,11209,0x101555820,1944,CreateMappedArguments +code-creation,BytecodeHandler,0,11209,0x101555fc0,640,CreateUnmappedArguments +code-creation,BytecodeHandler,0,11209,0x101556260,688,CreateRestParameter +code-creation,BytecodeHandler,0,11250,0x101556520,920,JumpLoop +code-creation,BytecodeHandler,0,11250,0x1015568c0,60,Jump +code-creation,BytecodeHandler,0,11250,0x101556900,80,JumpConstant +code-creation,BytecodeHandler,0,11250,0x101556960,112,JumpIfNullConstant +code-creation,BytecodeHandler,0,11250,0x1015569e0,112,JumpIfNotNullConstant +code-creation,BytecodeHandler,0,11250,0x101556a60,112,JumpIfUndefinedConstant +code-creation,BytecodeHandler,0,11250,0x101556ae0,112,JumpIfNotUndefinedConstant +code-creation,BytecodeHandler,0,11250,0x101556b60,124,JumpIfUndefinedOrNullConstant +code-creation,BytecodeHandler,0,11292,0x101556be0,112,JumpIfTrueConstant +code-creation,BytecodeHandler,0,11292,0x101556c60,112,JumpIfFalseConstant +code-creation,BytecodeHandler,0,11292,0x101556ce0,120,JumpIfJSReceiverConstant +code-creation,BytecodeHandler,0,11292,0x101556d60,208,JumpIfToBooleanTrueConstant +code-creation,BytecodeHandler,0,11292,0x101556e40,208,JumpIfToBooleanFalseConstant +code-creation,BytecodeHandler,0,11292,0x101556f20,188,JumpIfToBooleanTrue +code-creation,BytecodeHandler,0,11292,0x101556fe0,188,JumpIfToBooleanFalse +code-creation,BytecodeHandler,0,11334,0x1015570a0,92,JumpIfTrue +code-creation,BytecodeHandler,0,11334,0x101557100,92,JumpIfFalse +code-creation,BytecodeHandler,0,11334,0x101557160,92,JumpIfNull +code-creation,BytecodeHandler,0,11334,0x1015571c0,92,JumpIfNotNull +code-creation,BytecodeHandler,0,11334,0x101557220,92,JumpIfUndefined +code-creation,BytecodeHandler,0,11334,0x101557280,92,JumpIfNotUndefined +code-creation,BytecodeHandler,0,11334,0x1015572e0,104,JumpIfUndefinedOrNull +code-creation,BytecodeHandler,0,11334,0x101557360,100,JumpIfJSReceiver +code-creation,BytecodeHandler,0,11334,0x1015573e0,140,SwitchOnSmiNoFeedback +code-creation,BytecodeHandler,0,11375,0x101557480,536,ForInEnumerate +code-creation,BytecodeHandler,0,11375,0x1015576a0,268,ForInPrepare +code-creation,BytecodeHandler,0,11375,0x1015577c0,76,ForInContinue +code-creation,BytecodeHandler,0,11375,0x101557820,304,ForInNext +code-creation,BytecodeHandler,0,11375,0x101557960,48,ForInStep +code-creation,BytecodeHandler,0,11375,0x1015579a0,36,SetPendingMessage +code-creation,BytecodeHandler,0,11375,0x1015579e0,132,Throw +code-creation,BytecodeHandler,0,11375,0x101557a80,132,ReThrow +code-creation,BytecodeHandler,0,11375,0x101557b20,132,Return +code-creation,BytecodeHandler,0,11375,0x101557bc0,232,ThrowReferenceErrorIfHole +code-creation,BytecodeHandler,0,11375,0x101557cc0,152,ThrowSuperNotCalledIfHole +code-creation,BytecodeHandler,0,11417,0x101557d60,152,ThrowSuperAlreadyCalledIfNotHole +code-creation,BytecodeHandler,0,11417,0x101557e00,176,ThrowIfNotSuperConstructor +code-creation,BytecodeHandler,0,11417,0x101557ec0,148,SwitchOnGeneratorState +code-creation,BytecodeHandler,0,11417,0x101557f60,520,SuspendGenerator +tick,0x1957a20c4,11417,0,0x0,6 +code-creation,BytecodeHandler,0,11459,0x101558180,176,ResumeGenerator +code-creation,BytecodeHandler,0,11500,0x101558240,180,GetIterator +code-creation,BytecodeHandler,0,11500,0x101558300,128,Debugger +code-creation,BytecodeHandler,0,11500,0x1015583a0,136,IncBlockCounter +code-creation,BytecodeHandler,0,11500,0x101558440,76,Abort +code-creation,BytecodeHandler,0,11500,0x1015584a0,44,Star0 +code-creation,BytecodeHandler,0,11500,0x1015584e0,72,Illegal +code-creation,BytecodeHandler,0,11500,0x101558540,128,DebugBreak1.Wide +code-creation,BytecodeHandler,0,11500,0x1015585e0,128,DebugBreak2.Wide +code-creation,BytecodeHandler,0,11500,0x101558680,128,DebugBreak3.Wide +code-creation,BytecodeHandler,0,11500,0x101558720,128,DebugBreak4.Wide +code-creation,BytecodeHandler,0,11542,0x1015587c0,128,DebugBreak5.Wide +code-creation,BytecodeHandler,0,11542,0x101558860,128,DebugBreak6.Wide +code-creation,BytecodeHandler,0,11542,0x101558900,44,Ldar.Wide +code-creation,BytecodeHandler,0,11542,0x101558940,40,LdaSmi.Wide +code-creation,BytecodeHandler,0,11542,0x101558980,48,LdaConstant.Wide +code-creation,BytecodeHandler,0,11542,0x1015589c0,136,LdaContextSlot.Wide +code-creation,BytecodeHandler,0,11542,0x101558a60,136,LdaImmutableContextSlot.Wide +code-creation,BytecodeHandler,0,11542,0x101558b00,68,LdaCurrentContextSlot.Wide +code-creation,BytecodeHandler,0,11542,0x101558b60,68,LdaImmutableCurrentContextSlot.Wide +code-creation,BytecodeHandler,0,11542,0x101558bc0,44,Star.Wide +code-creation,BytecodeHandler,0,11584,0x101558c00,60,Mov.Wide +code-creation,BytecodeHandler,0,11584,0x101558c40,52,PushContext.Wide +code-creation,BytecodeHandler,0,11584,0x101558c80,48,PopContext.Wide +code-creation,BytecodeHandler,0,11584,0x101558cc0,64,TestReferenceEqual.Wide +code-creation,BytecodeHandler,0,11584,0x101558d20,4796,LdaGlobal.Wide +code-creation,BytecodeHandler,0,11584,0x101559fe0,4708,LdaGlobalInsideTypeof.Wide +code-creation,BytecodeHandler,0,11584,0x10155b260,188,StaGlobal.Wide +code-creation,BytecodeHandler,0,11584,0x10155b320,192,StaContextSlot.Wide +code-creation,BytecodeHandler,0,11584,0x10155b400,124,StaCurrentContextSlot.Wide +code-creation,BytecodeHandler,0,11625,0x10155b480,156,LdaLookupSlot.Wide +code-creation,BytecodeHandler,0,11625,0x10155b520,320,LdaLookupContextSlot.Wide +code-creation,BytecodeHandler,0,11625,0x10155b680,4996,LdaLookupGlobalSlot.Wide +code-creation,BytecodeHandler,0,11625,0x10155ca20,156,LdaLookupSlotInsideTypeof.Wide +code-creation,BytecodeHandler,0,11625,0x10155cac0,320,LdaLookupContextSlotInsideTypeof.Wide +code-creation,BytecodeHandler,0,11625,0x10155cc20,4912,LdaLookupGlobalSlotInsideTypeof.Wide +code-creation,BytecodeHandler,0,11625,0x10155df60,252,StaLookupSlot.Wide +code-creation,BytecodeHandler,0,11625,0x10155e060,5288,GetNamedProperty.Wide +code-creation,BytecodeHandler,0,11625,0x10155f520,212,GetNamedPropertyFromSuper.Wide +code-creation,BytecodeHandler,0,11625,0x10155f600,180,GetKeyedProperty.Wide +code-creation,BytecodeHandler,0,11667,0x10155f6c0,228,LdaModuleVariable.Wide +code-creation,BytecodeHandler,0,11667,0x10155f7c0,352,StaModuleVariable.Wide +code-creation,BytecodeHandler,0,11667,0x10155f940,204,SetNamedProperty.Wide +code-creation,BytecodeHandler,0,11667,0x10155fa20,204,DefineNamedOwnProperty.Wide +code-creation,BytecodeHandler,0,11667,0x10155fb00,196,SetKeyedProperty.Wide +code-creation,BytecodeHandler,0,11667,0x10155fbe0,216,DefineKeyedOwnProperty.Wide +code-creation,BytecodeHandler,0,11667,0x10155fcc0,196,StaInArrayLiteral.Wide +code-creation,BytecodeHandler,0,11667,0x10155fda0,232,DefineKeyedOwnPropertyInLiteral.Wide +code-creation,BytecodeHandler,0,11667,0x10155fea0,1388,Add.Wide +code-creation,BytecodeHandler,0,11667,0x101560420,1356,Sub.Wide +code-creation,BytecodeHandler,0,11709,0x101560980,1460,Mul.Wide +code-creation,BytecodeHandler,0,11709,0x101560f40,1548,Div.Wide +code-creation,BytecodeHandler,0,11709,0x101561560,1476,Mod.Wide +code-creation,BytecodeHandler,0,11709,0x101561b40,884,Exp.Wide +code-creation,BytecodeHandler,0,11709,0x101561ec0,1664,BitwiseOr.Wide +code-creation,BytecodeHandler,0,11709,0x101562560,1664,BitwiseXor.Wide +code-creation,BytecodeHandler,0,11709,0x101562c00,1664,BitwiseAnd.Wide +code-creation,BytecodeHandler,0,11709,0x1015632a0,1124,ShiftLeft.Wide +code-creation,BytecodeHandler,0,11709,0x101563720,1124,ShiftRight.Wide +code-creation,BytecodeHandler,0,11709,0x101563ba0,1184,ShiftRightLogical.Wide +code-creation,BytecodeHandler,0,11709,0x101564060,1316,AddSmi.Wide +code-creation,BytecodeHandler,0,11709,0x1015645a0,1332,SubSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101564ae0,1432,MulSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101565080,1584,DivSmi.Wide +code-creation,BytecodeHandler,0,11750,0x1015656c0,1408,ModSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101565c60,776,ExpSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101565f80,476,BitwiseOrSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101566160,476,BitwiseXorSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101566340,476,BitwiseAndSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101566520,504,ShiftLeftSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101566720,484,ShiftRightSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101566920,788,ShiftRightLogicalSmi.Wide +code-creation,BytecodeHandler,0,11750,0x101566c40,628,Inc.Wide +code-creation,BytecodeHandler,0,11750,0x101566ec0,628,Dec.Wide +code-creation,BytecodeHandler,0,11792,0x101567140,648,Negate.Wide +code-creation,BytecodeHandler,0,11792,0x1015673e0,484,BitwiseNot.Wide +code-creation,BytecodeHandler,0,11792,0x1015675e0,140,DeletePropertyStrict.Wide +code-creation,BytecodeHandler,0,11792,0x101567680,140,DeletePropertySloppy.Wide +code-creation,BytecodeHandler,0,11792,0x101567720,52,GetSuperConstructor.Wide +code-creation,BytecodeHandler,0,11792,0x101567760,372,FindNonDefaultConstructorOrConstruct.Wide +code-creation,BytecodeHandler,0,11792,0x1015678e0,924,CallAnyReceiver.Wide +code-creation,BytecodeHandler,0,11792,0x101567c80,924,CallProperty.Wide +code-creation,BytecodeHandler,0,11792,0x101568020,936,CallProperty0.Wide +code-creation,BytecodeHandler,0,11792,0x1015683e0,948,CallProperty1.Wide +code-creation,BytecodeHandler,0,11834,0x1015687a0,968,CallProperty2.Wide +code-creation,BytecodeHandler,0,11834,0x101568b80,920,CallUndefinedReceiver.Wide +code-creation,BytecodeHandler,0,11834,0x101568f20,912,CallUndefinedReceiver0.Wide +code-creation,BytecodeHandler,0,11834,0x1015692c0,924,CallUndefinedReceiver1.Wide +code-creation,BytecodeHandler,0,11834,0x101569660,944,CallUndefinedReceiver2.Wide +code-creation,BytecodeHandler,0,11834,0x101569a20,924,CallWithSpread.Wide +code-creation,BytecodeHandler,0,11834,0x101569dc0,148,CallRuntime.Wide +code-creation,BytecodeHandler,0,11834,0x101569e60,196,CallRuntimeForPair.Wide +code-creation,BytecodeHandler,0,11834,0x101569f40,104,CallJSRuntime.Wide +code-creation,BytecodeHandler,0,11834,0x101569fc0,1412,InvokeIntrinsic.Wide +code-creation,BytecodeHandler,0,11834,0x10156a560,888,Construct.Wide +code-creation,BytecodeHandler,0,11875,0x10156a8e0,440,ConstructWithSpread.Wide +code-creation,BytecodeHandler,0,11875,0x10156aaa0,2300,TestEqual.Wide +code-creation,BytecodeHandler,0,11875,0x10156b3a0,1168,TestEqualStrict.Wide +code-creation,BytecodeHandler,0,11875,0x10156b840,1728,TestLessThan.Wide +code-creation,BytecodeHandler,0,11875,0x10156bf20,1728,TestGreaterThan.Wide +code-creation,BytecodeHandler,0,11875,0x10156c600,1728,TestLessThanOrEqual.Wide +code-creation,BytecodeHandler,0,11875,0x10156cce0,1728,TestGreaterThanOrEqual.Wide +code-creation,BytecodeHandler,0,11875,0x10156d3c0,856,TestInstanceOf.Wide +code-creation,BytecodeHandler,0,11875,0x10156d720,180,TestIn.Wide +code-creation,BytecodeHandler,0,11875,0x10156d7e0,136,ToName.Wide +code-creation,BytecodeHandler,0,11875,0x10156d880,240,ToNumber.Wide +code-creation,BytecodeHandler,0,11875,0x10156d980,260,ToNumeric.Wide +code-creation,BytecodeHandler,0,11917,0x10156daa0,136,ToObject.Wide +code-creation,BytecodeHandler,0,11917,0x10156db40,448,CreateRegExpLiteral.Wide +code-creation,BytecodeHandler,0,11917,0x10156dd20,1488,CreateArrayLiteral.Wide +code-creation,BytecodeHandler,0,11917,0x10156e300,776,CreateEmptyArrayLiteral.Wide +code-creation,BytecodeHandler,0,11917,0x10156e620,2252,CreateObjectLiteral.Wide +code-creation,BytecodeHandler,0,11917,0x10156ef00,196,CloneObject.Wide +code-creation,BytecodeHandler,0,11917,0x10156efe0,188,GetTemplateObject.Wide +code-creation,BytecodeHandler,0,11917,0x10156f0a0,376,CreateClosure.Wide +code-creation,BytecodeHandler,0,11917,0x10156f220,144,CreateBlockContext.Wide +code-creation,BytecodeHandler,0,11917,0x10156f2c0,156,CreateCatchContext.Wide +code-creation,BytecodeHandler,0,11917,0x10156f360,344,CreateFunctionContext.Wide +code-creation,BytecodeHandler,0,11959,0x10156f4c0,344,CreateEvalContext.Wide +code-creation,BytecodeHandler,0,11959,0x10156f620,156,CreateWithContext.Wide +code-creation,BytecodeHandler,0,11959,0x10156f6c0,952,JumpLoop.Wide +code-creation,BytecodeHandler,0,11959,0x10156fa80,60,Jump.Wide +code-creation,BytecodeHandler,0,11959,0x10156fac0,80,JumpConstant.Wide +code-creation,BytecodeHandler,0,11959,0x10156fb20,112,JumpIfNullConstant.Wide +code-creation,BytecodeHandler,0,11959,0x10156fba0,112,JumpIfNotNullConstant.Wide +code-creation,BytecodeHandler,0,11959,0x10156fc20,112,JumpIfUndefinedConstant.Wide +code-creation,BytecodeHandler,0,11959,0x10156fca0,112,JumpIfNotUndefinedConstant.Wide +code-creation,BytecodeHandler,0,11959,0x10156fd20,124,JumpIfUndefinedOrNullConstant.Wide +code-creation,BytecodeHandler,0,12000,0x10156fda0,112,JumpIfTrueConstant.Wide +code-creation,BytecodeHandler,0,12000,0x10156fe20,112,JumpIfFalseConstant.Wide +code-creation,BytecodeHandler,0,12000,0x10156fea0,120,JumpIfJSReceiverConstant.Wide +code-creation,BytecodeHandler,0,12000,0x10156ff20,208,JumpIfToBooleanTrueConstant.Wide +code-creation,BytecodeHandler,0,12000,0x101570000,208,JumpIfToBooleanFalseConstant.Wide +code-creation,BytecodeHandler,0,12000,0x1015700e0,188,JumpIfToBooleanTrue.Wide +code-creation,BytecodeHandler,0,12000,0x1015701a0,188,JumpIfToBooleanFalse.Wide +code-creation,BytecodeHandler,0,12000,0x101570260,92,JumpIfTrue.Wide +code-creation,BytecodeHandler,0,12000,0x1015702c0,92,JumpIfFalse.Wide +code-creation,BytecodeHandler,0,12000,0x101570320,92,JumpIfNull.Wide +code-creation,BytecodeHandler,0,12042,0x101570380,92,JumpIfNotNull.Wide +code-creation,BytecodeHandler,0,12042,0x1015703e0,92,JumpIfUndefined.Wide +code-creation,BytecodeHandler,0,12042,0x101570440,92,JumpIfNotUndefined.Wide +code-creation,BytecodeHandler,0,12042,0x1015704a0,104,JumpIfUndefinedOrNull.Wide +code-creation,BytecodeHandler,0,12042,0x101570520,100,JumpIfJSReceiver.Wide +code-creation,BytecodeHandler,0,12042,0x1015705a0,140,SwitchOnSmiNoFeedback.Wide +code-creation,BytecodeHandler,0,12042,0x101570640,540,ForInEnumerate.Wide +code-creation,BytecodeHandler,0,12042,0x101570860,268,ForInPrepare.Wide +code-creation,BytecodeHandler,0,12042,0x101570980,76,ForInContinue.Wide +code-creation,BytecodeHandler,0,12042,0x1015709e0,308,ForInNext.Wide +code-creation,BytecodeHandler,0,12042,0x101570b20,48,ForInStep.Wide +code-creation,BytecodeHandler,0,12084,0x101570b60,192,ThrowReferenceErrorIfHole.Wide +code-creation,BytecodeHandler,0,12084,0x101570c40,180,ThrowIfNotSuperConstructor.Wide +code-creation,BytecodeHandler,0,12084,0x101570d00,148,SwitchOnGeneratorState.Wide +code-creation,BytecodeHandler,0,12084,0x101570da0,520,SuspendGenerator.Wide +code-creation,BytecodeHandler,0,12084,0x101570fc0,176,ResumeGenerator.Wide +code-creation,BytecodeHandler,0,12084,0x101571080,184,GetIterator.Wide +code-creation,BytecodeHandler,0,12084,0x101571140,140,IncBlockCounter.Wide +code-creation,BytecodeHandler,0,12084,0x1015711e0,80,Abort.Wide +code-creation,BytecodeHandler,0,12084,0x101571240,128,DebugBreak1.ExtraWide +code-creation,BytecodeHandler,0,12084,0x1015712e0,128,DebugBreak2.ExtraWide +code-creation,BytecodeHandler,0,12084,0x101571380,128,DebugBreak3.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571420,128,DebugBreak4.ExtraWide +code-creation,BytecodeHandler,0,12125,0x1015714c0,128,DebugBreak5.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571560,128,DebugBreak6.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571600,44,Ldar.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571640,40,LdaSmi.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571680,48,LdaConstant.ExtraWide +code-creation,BytecodeHandler,0,12125,0x1015716c0,136,LdaContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571760,136,LdaImmutableContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571800,68,LdaCurrentContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12125,0x101571860,68,LdaImmutableCurrentContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12125,0x1015718c0,44,Star.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101571900,60,Mov.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101571940,52,PushContext.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101571980,48,PopContext.ExtraWide +code-creation,BytecodeHandler,0,12167,0x1015719c0,64,TestReferenceEqual.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101571a20,4796,LdaGlobal.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101572ce0,4708,LdaGlobalInsideTypeof.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101573f60,188,StaGlobal.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101574020,192,StaContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101574100,124,StaCurrentContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12167,0x101574180,156,LdaLookupSlot.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101574220,320,LdaLookupContextSlot.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101574380,4996,LdaLookupGlobalSlot.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101575720,156,LdaLookupSlotInsideTypeof.ExtraWide +code-creation,BytecodeHandler,0,12209,0x1015757c0,320,LdaLookupContextSlotInsideTypeof.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101575920,4912,LdaLookupGlobalSlotInsideTypeof.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101576c60,252,StaLookupSlot.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101576d60,5288,GetNamedProperty.ExtraWide +code-creation,BytecodeHandler,0,12209,0x101578220,212,GetNamedPropertyFromSuper.ExtraWide +code-creation,BytecodeHandler,0,12250,0x101578300,180,GetKeyedProperty.ExtraWide +code-creation,BytecodeHandler,0,12250,0x1015783c0,228,LdaModuleVariable.ExtraWide +code-creation,BytecodeHandler,0,12250,0x1015784c0,352,StaModuleVariable.ExtraWide +code-creation,BytecodeHandler,0,12250,0x101578640,204,SetNamedProperty.ExtraWide +code-creation,BytecodeHandler,0,12250,0x101578720,204,DefineNamedOwnProperty.ExtraWide +code-creation,BytecodeHandler,0,12250,0x101578800,196,SetKeyedProperty.ExtraWide +code-creation,BytecodeHandler,0,12250,0x1015788e0,216,DefineKeyedOwnProperty.ExtraWide +code-creation,BytecodeHandler,0,12250,0x1015789c0,196,StaInArrayLiteral.ExtraWide +code-creation,BytecodeHandler,0,12250,0x101578aa0,232,DefineKeyedOwnPropertyInLiteral.ExtraWide +code-creation,BytecodeHandler,0,12250,0x101578ba0,1388,Add.ExtraWide +code-creation,BytecodeHandler,0,12292,0x101579120,1356,Sub.ExtraWide +code-creation,BytecodeHandler,0,12292,0x101579680,1460,Mul.ExtraWide +code-creation,BytecodeHandler,0,12292,0x101579c40,1548,Div.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157a260,1476,Mod.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157a840,884,Exp.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157abc0,1664,BitwiseOr.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157b260,1664,BitwiseXor.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157b900,1664,BitwiseAnd.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157bfa0,1124,ShiftLeft.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157c420,1124,ShiftRight.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157c8a0,1184,ShiftRightLogical.ExtraWide +code-creation,BytecodeHandler,0,12292,0x10157cd60,1316,AddSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157d2a0,1332,SubSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157d7e0,1432,MulSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157dd80,1584,DivSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157e3c0,1408,ModSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157e960,776,ExpSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157ec80,472,BitwiseOrSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157ee60,472,BitwiseXorSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157f040,472,BitwiseAndSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157f220,492,ShiftLeftSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157f420,480,ShiftRightSmi.ExtraWide +code-creation,BytecodeHandler,0,12334,0x10157f620,780,ShiftRightLogicalSmi.ExtraWide +code-creation,BytecodeHandler,0,12375,0x10157f940,628,Inc.ExtraWide +code-creation,BytecodeHandler,0,12375,0x10157fbc0,628,Dec.ExtraWide +code-creation,BytecodeHandler,0,12375,0x10157fe40,648,Negate.ExtraWide +code-creation,BytecodeHandler,0,12375,0x1015800e0,484,BitwiseNot.ExtraWide +code-creation,BytecodeHandler,0,12375,0x1015802e0,140,DeletePropertyStrict.ExtraWide +code-creation,BytecodeHandler,0,12375,0x101580380,140,DeletePropertySloppy.ExtraWide +code-creation,BytecodeHandler,0,12375,0x101580420,52,GetSuperConstructor.ExtraWide +code-creation,BytecodeHandler,0,12375,0x101580460,372,FindNonDefaultConstructorOrConstruct.ExtraWide +code-creation,BytecodeHandler,0,12375,0x1015805e0,924,CallAnyReceiver.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101580980,924,CallProperty.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101580d20,936,CallProperty0.ExtraWide +code-creation,BytecodeHandler,0,12417,0x1015810e0,948,CallProperty1.ExtraWide +code-creation,BytecodeHandler,0,12417,0x1015814a0,968,CallProperty2.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101581880,920,CallUndefinedReceiver.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101581c20,912,CallUndefinedReceiver0.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101581fc0,924,CallUndefinedReceiver1.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101582360,944,CallUndefinedReceiver2.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101582720,924,CallWithSpread.ExtraWide +code-creation,BytecodeHandler,0,12417,0x101582ac0,148,CallRuntime.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101582b60,196,CallRuntimeForPair.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101582c40,104,CallJSRuntime.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101582cc0,1412,InvokeIntrinsic.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101583260,888,Construct.ExtraWide +code-creation,BytecodeHandler,0,12459,0x1015835e0,440,ConstructWithSpread.ExtraWide +code-creation,BytecodeHandler,0,12459,0x1015837a0,2300,TestEqual.ExtraWide +code-creation,BytecodeHandler,0,12459,0x1015840a0,1168,TestEqualStrict.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101584540,1728,TestLessThan.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101584c20,1728,TestGreaterThan.ExtraWide +code-creation,BytecodeHandler,0,12459,0x101585300,1728,TestLessThanOrEqual.ExtraWide +code-creation,BytecodeHandler,0,12500,0x1015859e0,1728,TestGreaterThanOrEqual.ExtraWide +code-creation,BytecodeHandler,0,12500,0x1015860c0,856,TestInstanceOf.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101586420,180,TestIn.ExtraWide +code-creation,BytecodeHandler,0,12500,0x1015864e0,136,ToName.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101586580,240,ToNumber.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101586680,260,ToNumeric.ExtraWide +code-creation,BytecodeHandler,0,12500,0x1015867a0,136,ToObject.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101586840,448,CreateRegExpLiteral.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101586a20,1488,CreateArrayLiteral.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101587000,776,CreateEmptyArrayLiteral.ExtraWide +code-creation,BytecodeHandler,0,12500,0x101587320,2252,CreateObjectLiteral.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101587c00,196,CloneObject.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101587ce0,188,GetTemplateObject.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101587da0,376,CreateClosure.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101587f20,144,CreateBlockContext.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101587fc0,156,CreateCatchContext.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101588060,344,CreateFunctionContext.ExtraWide +code-creation,BytecodeHandler,0,12542,0x1015881c0,344,CreateEvalContext.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101588320,156,CreateWithContext.ExtraWide +code-creation,BytecodeHandler,0,12542,0x1015883c0,952,JumpLoop.ExtraWide +code-creation,BytecodeHandler,0,12542,0x101588780,60,Jump.ExtraWide +code-creation,BytecodeHandler,0,12584,0x1015887c0,80,JumpConstant.ExtraWide +code-creation,BytecodeHandler,0,12584,0x101588820,112,JumpIfNullConstant.ExtraWide +code-creation,BytecodeHandler,0,12584,0x1015888a0,112,JumpIfNotNullConstant.ExtraWide +code-creation,BytecodeHandler,0,12584,0x101588920,112,JumpIfUndefinedConstant.ExtraWide +code-creation,BytecodeHandler,0,12584,0x1015889a0,112,JumpIfNotUndefinedConstant.ExtraWide +code-creation,BytecodeHandler,0,12584,0x101588a20,124,JumpIfUndefinedOrNullConstant.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588aa0,112,JumpIfTrueConstant.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588b20,112,JumpIfFalseConstant.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588ba0,120,JumpIfJSReceiverConstant.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588c20,208,JumpIfToBooleanTrueConstant.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588d00,208,JumpIfToBooleanFalseConstant.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588de0,188,JumpIfToBooleanTrue.ExtraWide +code-creation,BytecodeHandler,0,12625,0x101588ea0,188,JumpIfToBooleanFalse.ExtraWide +code-creation,BytecodeHandler,0,12667,0x101588f60,92,JumpIfTrue.ExtraWide +code-creation,BytecodeHandler,0,12667,0x101588fc0,92,JumpIfFalse.ExtraWide +code-creation,BytecodeHandler,0,12667,0x101589020,92,JumpIfNull.ExtraWide +code-creation,BytecodeHandler,0,12667,0x101589080,92,JumpIfNotNull.ExtraWide +code-creation,BytecodeHandler,0,12667,0x1015890e0,92,JumpIfUndefined.ExtraWide +code-creation,BytecodeHandler,0,12667,0x101589140,92,JumpIfNotUndefined.ExtraWide +code-creation,BytecodeHandler,0,12667,0x1015891a0,104,JumpIfUndefinedOrNull.ExtraWide +code-creation,BytecodeHandler,0,12667,0x101589220,100,JumpIfJSReceiver.ExtraWide +code-creation,BytecodeHandler,0,12667,0x1015892a0,140,SwitchOnSmiNoFeedback.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589340,540,ForInEnumerate.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589560,268,ForInPrepare.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589680,76,ForInContinue.ExtraWide +code-creation,BytecodeHandler,0,12709,0x1015896e0,308,ForInNext.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589820,48,ForInStep.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589860,192,ThrowReferenceErrorIfHole.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589940,180,ThrowIfNotSuperConstructor.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589a00,148,SwitchOnGeneratorState.ExtraWide +code-creation,BytecodeHandler,0,12709,0x101589aa0,520,SuspendGenerator.ExtraWide +code-creation,BytecodeHandler,0,12750,0x101589cc0,176,ResumeGenerator.ExtraWide +code-creation,BytecodeHandler,0,12750,0x101589d80,184,GetIterator.ExtraWide +code-creation,BytecodeHandler,0,12750,0x101589e40,140,IncBlockCounter.ExtraWide +code-creation,BytecodeHandler,0,12750,0x101589ee0,80,Abort.ExtraWide +tick,0x1957a20c4,12750,0,0x0,6 +new,MemoryChunk,0xaebae480000,262144 +new,MemoryChunk,0x2b73e4fc0000,262144 +new,MemoryChunk,0x347720640000,262144 +tick,0x10116a284,13917,0,0x0,5 +new,MemoryChunk,0x220150100000,262144 +new,MemoryChunk,0x1fdc87040000,262144 +tick,0x101000ad4,15167,0,0x0,5 +code-creation,Eval,10,15375,0x1fdc8707956e,5, node:internal/main/run_main_module:1:1,0x1fdc87079428,~ +code-source-info,0x1fdc8707956e,80,0,1182,C0O0C4O1182,, +code-creation,JS,10,15459,0x1fdc8707965e,120, node:internal/main/run_main_module:1:1,0x1fdc870794e8,~ +code-source-info,0x1fdc8707965e,80,0,1182,C0O23C5O128C8O128C13O71C18O101C23O198C26O198C31O179C36O246C38O246C43O281C46O367C55O367C60O398C63O402C70O448C75O466C78O466C83O502C88O503C95O1114C98O1114C103O1152C108O1159C113O1160C119O1181,, +code-creation,JS,10,15709,0x1fdc87079cbe,45,prepareMainThreadExecution node:internal/process/pre_execution:54:36,0x3f9e7a278bc0,~ +code-source-info,0x1fdc87079cbe,67,1126,1275,C20O1178C30O1208C36O1225C40O1185C44O1273,, +tick,0x19571ca30,16584,0,0x0,3,0x0,0x1fdc87079684 +code-creation,JS,10,16584,0x1fdc8707b8c6,309,prepareExecution node:internal/process/pre_execution:70:26,0x3f9e7a2790f8,~ +code-source-info,0x1fdc8707b8c6,67,1503,3672,C0O1525C5O1538C10O1557C15O1586C18O1586C21O1613C26O1613C29O1730C32O1730C37O1765C40O1765C43O1794C46O1794C49O1819C52O1819C55O1844C58O1844C61O1861C64O1861C67O1881C70O1881C73O1903C76O1903C79O1926C82O1926C85O2014C88O2014C91O2069C94O2069C97O2096C100O2096C103O2130C106O2130C109O2159C115O2159C120O2188C125O2189C129O2209C132O2209C135O2242C139O2266C150O2273C155O2298C160O2266C164O2401C167O2401C171O2427C173O2447C179O2447C184O2490C189O2504C194O2524C199O2491C205O2623C208O2623C211O2661C214O2661C217O2721C220O2721C223O3055C226O3055C229O3270C232O3270C235O3361C241O3361C246O3400C251O3401C257O3443C268O3451C273O3476C279O3443C283O3562C290O3570C292O3562C296O3597C300O3626C303O3626C306O3653C308O3670,, +code-creation,JS,10,16625,0x1fdc8707bbb6,10,refreshRuntimeOptions node:internal/process/pre_execution:177:31,0x3f9e7a2791e8,~ +code-source-info,0x1fdc8707bbb6,67,4871,4897,C0O4878C5O4878C9O4896,, +code-creation,JS,10,16667,0x1fdc8707bc9e,22,refreshOptions node:internal/options:39:24,0x3f9e7a244918,~ +code-source-info,0x1fdc8707bc9e,17,902,960,C0O909C4O920C10O935C14O946C21O959,, +code-creation,JS,10,16792,0x1fdc8707c006,19,reconnectZeroFillToggle node:internal/buffer:1074:33,0x3f9e7a255520,~ +code-source-info,0x1fdc8707c006,25,30714,30754,C0O30721C5O30732C11O30730C18O30753,, +tick,0x19579ebd4,17875,0,0x0,3,0x0,0x1fdc8707b8e0,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,17917,0x1fdc8707e8fe,462,patchProcessObject node:internal/process/pre_execution:188:28,0x3f9e7a279238,~ +code-source-info,0x1fdc8707e8fe,67,5351,7754,C0O5385C6O5385C11O5431C19O5431C24O5463C30O5463C35O5501C40O5502C44O5628C55O5649C62O5783C65O5783C75O5824C81O5828C88O5628C93O5842C97O5859C101O5874C105O5891C109O5902C112O5910C122O5928C126O5918C130O5969C132O6124C139O6151C146O6155C153O6169C159O6203C166O6207C173O6169C180O6285C186O6285C194O6335C202O6351C209O6355C213O6335C219O6367C222O6375C232O6383C242O6608C248O6608C253O6682C259O6682C264O6654C269O6725C273O6908C282O6908C287O6954C296O6954C301O7007C310O7007C315O7067C324O7067C329O7125C338O7125C343O7185C352O7185C357O7249C366O7249C371O7314C380O7314C385O7385C394O7385C399O7455C408O7455C413O7515C422O7515C427O7585C438O7585C443O7655C454O7655C459O7735C461O7752,, +code-creation,JS,10,18084,0x1fdc8707ee86,134,set node:internal/bootstrap/node:116:8,0x1746951fbd38,~ +code-source-info,0x1fdc8707ee86,12,4131,4547,C0O4146C8O4209C11O4223C19O4260C28O4280C35O4301C38O4301C43O4280C49O4329C54O4361C64O4361C69O4401C78O4408C83O4419C87O4436C96O4443C101O4457C107O4485C116O4492C120O4506C124O4525C126O4534C133O4546,, +new,MemoryChunk,0x9d6055c0000,262144 +code-creation,JS,10,18709,0x1fdc8707fdde,189,resolve node:path:1095:10,0x3f9e7a25b0a0,~ +code-source-info,0x1fdc8707fdde,34,33911,34827,C0O33911C3O33946C6O33977C8O34007C12O34014C16O34027C18O34021C25O34031C27O34075C28O34077C35O34088C42O34094C45O34094C49O34112C59O34142C70O34112C75O34193C81O34200C86O34217C88O34242C100O34268C105O34290C112O34317C120O34356C122O34352C126O34050C131O33989C135O34572C140O34618C151O34587C157O34704C161O34734C166O34745C170O34760C171O34791C177O34798C188O34823,, +tick,0x10099996c,20375,0,0x0,3,0x0,0x1fdc8707e9d3,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 +tick,0x195679db0,20375,0,0x0,3,0x0,0x1fdc8707e9d3,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,20375,0x9d6055c424e,13, node:path:1086:10,0x3f9e7a25b050,~ +code-source-info,0x9d6055c424e,34,33760,33779,C0O33774C3O33774C8O33774C12O33779,, +code-creation,JS,10,20417,0x9d6055c434e,40,wrappedCwd node:internal/bootstrap/switches/does_own_process_state:136:20,0x3f9e7a27c8f0,~ +code-source-info,0x9d6055c434e,73,3560,3644,C0O3567C7O3581C12O3593C17O3616C22O3616C29O3603C35O3625C39O3642,, +code-creation,JS,10,20709,0x9d6055c4a16,444,normalizeString node:path:66:25,0x3f9e7a25ac40,~ +code-source-info,0x9d6055c4a16,34,2161,4085,C0O2226C3O2256C5O2277C8O2294C10O2310C12O2328C14O2341C18O2333C23O2373C27O2366C32O2387C37O2394C45O2443C51O2472C53O2494C58O2530C64O2561C66O2581C69O2575C76O2593C83O2631C85O2640C90O2665C97O2672C104O2697C111O2718C114O2753C118O2760C122O2718C130O2769C132O2765C139O2793C142O2828C146O2835C150O2793C158O2844C160O2840C165O2874C172O2881C177O2923C182O2923C188O2979C190O2998C195O3022C198O3046C202O3104C215O3110C221O3210C225O3217C231O3223C234O3223C239O3221C243O3293C246O3320C248O3342C250O3377C256O3384C261O3405C264O3427C266O3462C269O3489C271O3511C273O3551C277O3594C283O3601C293O3610C308O3642C313O3706C319O3713C324O3728C326O3738C330O3750C335O3787C345O3750C363O3821C370O3864C380O3827C386O3881C388O3903C391O3915C395O3934C398O3955C402O3976C404O3989C406O3985C413O4006C418O4022C425O4049C428O2351C433O2315C441O4072C443O4083,, +code-creation,JS,10,20750,0x9d6055c4d9e,8,isPosixPathSeparator node:path:56:30,0x3f9e7a25aba0,~ +code-source-info,0x9d6055c4d9e,34,1854,1902,C0O1865C2O1881C4O1877C7O1900,, +new,MemoryChunk,0x116d9d700000,262144 +new,MemoryChunk,0x106780000,262144 +code-creation,JS,11,20959,0x106788020,3640,normalizeString node:path:66:25,0x3f9e7a25ac40,^ +code-source-info,0x106788020,34,2161,4085,,, +code-creation,JS,11,21000,0x106788e80,768,requireBuiltin node:internal/bootstrap/realm:414:24,0x1746951f6ed0,^ +code-source-info,0x106788e80,9,13268,13610,,, +code-creation,JS,11,21542,0x1067891a0,1448,compileForInternalLoader node:internal/bootstrap/realm:377:27,0x1746951f6c60,^ +code-source-info,0x1067891a0,9,12252,13050,,, +code-creation,JS,11,21584,0x106789760,648,internalBinding node:internal/bootstrap/realm:185:45,0x1746951f6488,^ +code-source-info,0x106789760,9,5979,6217,,, +code-creation,JS,11,21584,0x106789a00,144,isPosixPathSeparator node:path:56:30,0x3f9e7a25aba0,^ +code-source-info,0x106789a00,34,1854,1902,,, +tick,0x101f1e490,21584,0,0x0,0,0x0,0x9d6055c4bc7,0x1fdc8707fe75,0x1fdc8707e9d3,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,21667,0x9d6055c63d6,376,initializeGlobalConsole node:internal/console/constructor:690:33,0x3f9e7a263348,~ +code-source-info,0x9d6055c63d6,44,20457,21464,C0O20457C12O20477C19O20491C21O20490C30O20508C35O20521C42O20535C44O20534C53O20551C59O20662C67O20662C72O20593C77O20601C82O20629C87O20706C95O20711C100O20736C106O20754C111O20782C112O20789C113O20831C121O20831C126O20813C131O20887C143O20906C148O20887C153O20942C160O20942C165O20992C172O21018C177O21018C185O20992C191O21075C198O21075C203O21075C205O21110C215O21110C237O21103C267O21103C270O21161C276O21161C283O21179C287O21200C293O21200C298O21092C365O21338C370O21338C375O21463,, +code-creation,JS,10,22500,0x9d6055c80ae,94,value node:internal/console/constructor:205:20,0x3f9e7a2629a0,~ +code-source-info,0x9d6055c80ae,44,5840,6477,C0O5840C15O5861C16O5861C18O5879C19O5879C21O5893C33O5943C38O6041C46O6148C60O6210C65O6308C73O6419C87O5893C93O6476,, +code-creation,JS,10,22584,0x9d6055c8736,414,value node:internal/console/constructor:235:20,0x3f9e7a262a60,~ +code-source-info,0x9d6055c8736,44,6577,7977,C17O6633C27O6695C34O6737C52O6807C55O6777C73O6877C86O6974C89O6944C104O7023C111O7065C126O7105C129O7105C144O7157C151O7179C166O7213C169O7209C187O7304C191O7314C198O7336C213O7370C216O7366C235O7392C239O7405C246O7427C261O7457C275O7479C279O7492C286O7514C300O7544C314O7561C318O7576C325O7598C340O7628C354O7643C358O7668C365O7710C380O7750C394O7788C398O7808C407O6633C413O7976,, +code-creation,JS,10,22625,0x9d6055c8cb6,18,createWriteErrorHandler node:internal/console/constructor:357:33,0x3f9e7a262d08,~ +code-source-info,0x9d6055c8cb6,44,10694,11551,C0O10694C13O10723C17O11549,, +code-creation,JS,10,22667,0x9d6055c924e,63,addReadOnlyProcessAlias node:internal/process/pre_execution:248:33,0x3f9e7a279288,~ +code-source-info,0x9d6055c924e,67,7788,8037,C16O7840C21O7840C26O7866C28O7883C36O7913C43O7999C49O8017C56O7883C62O8036,, +code-creation,JS,10,22667,0x9d6055c93ee,82,getOptionValue node:internal/options:44:24,0x3f9e7a244968,~ +code-source-info,0x9d6055c93ee,17,985,1228,C0O1018C3O1018C7O1063C15O1063C22O1113C30O1135C38O1135C43O1122C47O1113C53O1150C55O1175C60O1181C61O1203C66O1203C74O1218C81O1226,, +tick,0x1957a20c4,22709,0,0x0,3,0x0,0x9d6055c9263,0x1fdc8707ea18,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,22750,0x9d6055c9546,33,getCLIOptionsFromBinding node:internal/options:18:34,0x3f9e7a244750,~ +code-source-info,0x9d6055c9546,17,497,598,C0O504C6O527C11O554C15O539C28O578C32O596,, +code-creation,JS,10,22917,0x9d6055c9bb6,46,setupTraceCategoryState node:internal/process/pre_execution:460:33,0x3f9e7a2796d0,~ +code-source-info,0x9d6055c9bb6,67,13707,13934,C0O13749C6O13749C11O13722C16O13821C22O13821C27O13792C32O13863C35O13888C40O13863C45O13933,, +code-creation,JS,10,22959,0x9d6055c9d4e,77,toggleTraceCategoryState node:internal/process/per_thread:410:34,0x3f9e7a256998,~ +code-source-info,0x9d6055c9d4e,27,12013,12310,C0O12037C4O12066C10O12101C16O12132C21O12176C26O12177C33O12122C39O12201C44O12222C49O12222C55O12241C61O12273C66O12294C71O12294C76O12309,, +code-creation,JS,10,23417,0x9d6055cac7e,62,setupInspectorHooks node:internal/process/pre_execution:466:29,0x3f9e7a279720,~ +code-source-info,0x9d6055cac7e,67,13964,14518,C0O14307C6O14311C11O14336C17O14402C23O14402C28O14371C33O14385C38O14448C44O14448C49O14476C54O14477C61O14517,, +code-creation,JS,10,23459,0x9d6055caf06,126,setupWarningHandler node:internal/process/pre_execution:261:29,0x3f9e7a2792d8,~ +code-source-info,0x9d6055caf06,67,8067,8559,C0O8067C11O8130C19O8130C24O8086C30O8101C36O8169C46O8173C57O8217C62O8221C69O8238C74O8253C79O8261C90O8261C96O8388C103O8392C108O8422C120O8422C125O8558,, +code-creation,JS,10,23500,0x9d6055cb566,236,setupUndici node:internal/process/pre_execution:283:21,0x3f9e7a279328,~ +code-source-info,0x9d6055cb566,67,8654,10014,C0O8654C19O8661C26O8665C30O8685C36O8710C37O8717C38O8729C39O8729C41O9133C51O9138C62O9347C73O9363C82O9347C87O9397C98O9420C109O9450C120O9492C131O9533C142O9575C150O9397C155O9690C163O9690C168O9721C178O9722C183O9865C193O9869C199O9919C210O9942C221O9973C229O9919C235O10013,, +code-creation,JS,10,23542,0x9d6055cb81e,28,getEmbedderOptions node:internal/options:32:28,0x3f9e7a2448c8,~ +code-source-info,0x9d6055cb81e,17,760,877,C0O767C6O795C11O813C17O811C23O852C27O875,, +code-creation,JS,10,23542,0x9d6055cbd9e,33,lazyInterface node:internal/process/pre_execution:298:25,0x9d6055cb2f0,~ +code-source-info,0x9d6055cbd9e,67,8910,9129,C0O8910C9O8923C14O8989C22O9047C32O9125,, +code-creation,JS,10,23625,0x9d6055cc42e,174,setupWebCrypto node:internal/process/pre_execution:341:24,0x3f9e7a2793d8,~ +code-source-info,0x9d6055cc42e,67,10141,11070,C0O10148C5O10152C9O10172C17O10199C23O10199C29O10259C30O10266C31O10274C37O10278C42O10303C48O10322C55O10360C73O10322C78O10633C85O10661C96O10633C103O10771C110O10792C123O10861C154O10861C167O10771C173O11069,, +code-creation,JS,10,23667,0x9d6055ccb7e,70,setupCustomEvent node:internal/process/pre_execution:389:26,0x3f9e7a2794a0,~ +code-source-info,0x9d6055ccb7e,67,11724,11976,C0O11731C5O11735C9O11755C17O11782C23O11782C29O11844C30O11851C31O11882C37O11882C42O11866C47O11918C54O11934C63O11918C69O11975,, +code-creation,JS,10,23709,0x9d6055ccd4e,64,setupCodeCoverage node:internal/process/pre_execution:374:27,0x3f9e7a279450,~ +code-source-info,0x9d6055ccd4e,67,11098,11593,C0O11404C3O11416C8O11420C16O11447C22O11447C28O11501C31O11509C38O11538C44O11565C49O11569C54O11538C58O11530C63O11592,, +code-creation,JS,10,23750,0x9d6055ccf2e,75,setupDebugEnv node:internal/process/pre_execution:420:23,0x3f9e7a2795b8,~ +code-source-info,0x9d6055ccf2e,67,12478,12687,C0O12485C6O12485C11O12518C19O12546C24O12550C29O12519C34O12565C42O12569C48O12613C54O12613C59O12648C64O12662C69O12663C74O12686,, +code-creation,JS,10,23792,0x9d6055cd296,153,initializeDebugEnv node:internal/util/debuglog:21:28,0x3f9e7a24a410,~ +code-source-info,0x9d6055cd296,22,530,976,C0O545C7O556C13O581C24O694C38O694C45O738C56O739C63O767C74O768C82O818C94O833C110O818C115O818C117O856C126O868C138O944C145O956C152O975,, +code-creation,JS,10,23917,0x9d6055cd92e,31,initializeReport node:internal/process/pre_execution:408:26,0x3f9e7a279540,~ +code-source-info,0x9d6055cd92e,67,12230,12454,C0O12237C11O12258C16O12350C24O12237C30O12453,, +tick,0x1955f1474,23959,0,0x0,2,0x0,0x1fdc8707b924,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,24000,0x9d6055ce17e,557,initializePermission node:internal/process/pre_execution:573:30,0x3f9e7a279860,~ +code-source-info,0x9d6055ce17e,67,17535,19389,C0O17573C8O17573C13O17620C15O17654C22O17670C26O17765C29O17773C41O17773C47O17900C53O17900C58O17886C63O17891C68O17962C73O18049C90O18041C120O18041C123O18068C129O18072C135O18104C139O18112C151O18147C166O18190C175O18112C181O18030C253O18306C258O18389C275O18381C305O18381C308O18427C314O18427C319O18465C327O18472C333O18486C338O18490C348O18490C355O18515C359O18523C371O18553C386O18583C393O18656C400O18699C409O18523C415O18370C487O18827C498O18848C504O18960C512O18970C518O18983C528O18827C535O19054C540O19173C545O19195C550O19173C556O19388,, +code-creation,JS,10,24042,0x9d6055ce5a6,34, node:internal/process/pre_execution:626:53,0x9d6055cde38,~ +code-source-info,0x9d6055ce5a6,67,19221,19381,C0O19253C5O19253C10O19291C16O19309C26O19315C31O19309C33O19380,, +code-creation,JS,10,24042,0x9d6055ce776,35,initializeSourceMapsHandlers node:internal/process/pre_execution:707:38,0x3f9e7a2799d8,~ +code-source-info,0x9d6055ce776,67,21949,22110,C0O21996C6O21996C11O21968C16O22047C18O22068C24O22068C29O22047C34O22109,, +code-creation,JS,10,24084,0x9d6055ce926,94,setSourceMapsEnabled node:internal/source_map/source_map_cache:52:30,0x3f9e7a25c5d0,~ +code-source-info,0x9d6055ce926,38,1690,2203,C0O1700C8O1700C13O1732C18O1732C22O1760C26O1816C32O1816C37O1789C42O1872C47O1872C53O1930C59O2089C65O2089C70O2062C75O2121C80O2121C84O2177C86O2195C93O2202,, +code-creation,JS,10,24500,0x9d6055cf50e,30,validateBoolean node:internal/validators:216:25,0x1746951ff250,~ +code-source-info,0x9d6055cf50e,15,5595,5706,C0O5613C6O5649C22O5655C27O5649C29O5705,, +code-creation,JS,10,25084,0x9d6055d0d8e,348,initializeDeprecations node:internal/process/pre_execution:484:32,0x3f9e7a279770,~ +code-source-info,0x9d6055d0d8e,67,14744,16665,C0O14773C6O14773C11O14759C16O14828C24O14828C29O15019C35O15019C40O15060C46O15060C51O15113C73O15105C101O15105C104O15431C112O15451C116O15493C127O15567C138O15657C149O15612C158O15478C167O15716C170O15449C174O15094C239O15993C245O15993C250O15972C255O16022C257O16050C268O16071C275O16212C279O16050C284O16245C288O16275C294O16311C304O16388C311O16293C316O16291C320O16474C326O16516C337O16498C342O16496C347O16664,, +code-creation,JS,10,25167,0x9d6055d112e,72,initializeDns node:internal/dns/utils:202:23,0x3f9e7a27bb90,~ +code-source-info,0x9d6055d112e,71,5449,5813,C0O5477C8O5477C13O5517C15O5542C28O5551C36O5652C38O5661C44O5684C49O5689C54O5717C55O5724C56O5732C66O5732C71O5812,, +code-creation,JS,10,25542,0x9d6055d1f06,90,setupSymbolDisposePolyfill node:internal/process/pre_execution:138:36,0x3f9e7a279148,~ +code-source-info,0x9d6055d1f06,67,3709,4409,C0O3879C5O3897C13O3925C20O3946C33O4055C39O3925C44O4167C49O4185C57O4218C64O4239C77O4353C83O4218C89O4408,, +code-creation,JS,10,25584,0x9d6055d20ce,21,assert node:internal/assert:11:16,0x1746951fb6e0,~ +script-source,11,node:internal/assert,'use strict';\n\nlet error;\nfunction lazyError() {\n if (!error) {\n error = require('internal/errors').codes.ERR_INTERNAL_ASSERTION;\n }\n return error;\n}\n\nfunction assert(value\x2C message) {\n if (!value) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n }\n}\n\nfunction fail(message) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n}\n\nassert.fail = fail;\n\nmodule.exports = assert;\n +code-source-info,0x9d6055d20ce,11,172,307,C0O193C4O242C7O242C11O259C13O265C18O259C20O306,, +tick,0x100c25204,25625,0,0x0,3,0x0,0x1fdc8707b943,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,25667,0x9d6055d263e,432,readPolicyFromDisk node:internal/process/pre_execution:635:28,0x3f9e7a2798e8,~ +code-source-info,0x9d6055d263e,67,19418,21210,C0O19452C10O19452C15O19495C17O19525C21O19533C35O19533C41O19658C49O19658C55O19635C60O19650C65O19777C67O19794C75O19798C81O19813C87O19814C94O19868C101O19937C105O19959C111O19959C117O19937C123O19973C134O19989C138O20003C146O20017C152O20075C160O20075C165O20109C175O20109C182O20184C192O20184C197O20226C199O20279C207O20279C212O20357C220O20357C226O20325C231O20337C236O20406C242O20406C248O20456C254O20456C260O20515C262O20541C264O20565C268O20546C273O20656C275O20672C280O20606C285O20634C290O20698C296O20734C302O20734C307O20775C313O20775C319O20804C325O20824C329O20811C334O20844C341O20891C343O20920C345O20961C351O20983C361O20983C368O20961C374O20574C379O20528C383O21018C387O21045C401O21051C406O21045C407O21134C415O21162C419O21192C429O21204C431O21209,, +code-creation,JS,10,25709,0x9d6055d2a4e,49,setupStacktracePrinterOnSigint node:internal/process/pre_execution:398:40,0x3f9e7a2794f0,~ +code-source-info,0x9d6055d2a4e,67,12017,12203,C0O12024C8O12029C14O12069C15O12076C16O12110C22O12110C27O12091C32O12160C38O12193C43O12193C48O12202,, +code-creation,JS,10,25750,0x9d6055d2bee,35,initializeReportSignalHandlers node:internal/process/pre_execution:428:40,0x3f9e7a279608,~ +code-source-info,0x9d6055d2bee,67,12788,12937,C0O12795C8O12799C14O12872C20O12872C25O12851C30O12912C34O12936,, +code-creation,JS,10,25750,0x9d6055d2eee,155,initializeHeapSnapshotSignalHandlers node:internal/process/pre_execution:435:46,0x3f9e7a279658,~ +code-source-info,0x9d6055d2eee,67,12984,13673,C0O12984C20O13006C30O13006C34O13006C36O13071C46O13071C50O13071C52O13110C56O13127C57O13134C58O13138C66O13138C71O13168C79O13169C84O13229C92O13229C97O13207C103O13404C108O13412C119O13412C125O13540C132O13544C137O13572C149O13572C154O13672,, +code-creation,JS,10,25792,0x9d6055d3236,138,setupChildProcessIpcChannel node:internal/process/pre_execution:545:37,0x3f9e7a2797c0,~ +code-source-info,0x9d6055d3236,67,16703,17232,C0O16710C3O16722C8O16726C14O16764C20O16764C25O16808C33O16831C38O16835C46O16808C52O16861C53O16871C57O16861C61O16952C64O16967C73O17025C76O17033C81O17037C90O17084C93O17099C102O17141C108O17141C113O17165C118O17166C124O17205C127O17220C132O17205C137O17231,, +code-creation,JS,10,25834,0x9d6055d3456,63,initializeClusterIPC node:internal/process/pre_execution:564:30,0x3f9e7a279810,~ +code-source-info,0x9d6055d3456,67,17263,17504,C0O17270C3O17282C10O17286C18O17301C23O17305C29O17343C35O17343C40O17375C45O17375C49O17464C52O17479C62O17503,, +code-creation,JS,10,25834,0x9d6055d3596,54,runDeserializeCallbacks node:internal/v8/startup_snapshot:39:33,0x3f9e7a268f38,~ +code-source-info,0x9d6055d3596,53,863,1004,C0O905C5O898C11O905C16O949C21O970C26O970C33O927C40O940C44O983C48O870C53O1003,, +code-creation,JS,10,26000,0x9d6055d3ac6,69,setupUserModules node:internal/process/pre_execution:163:26,0x3f9e7a279198,~ +code-source-info,0x9d6055d3ac6,67,4436,4839,C10O4465C13O4465C16O4490C19O4490C23O4547C29O4547C34O4589C39O4607C45O4589C49O4700C53O4726C54O4733C55O4740C58O4740C61O4808C64O4808C68O4838,, +code-creation,JS,10,26000,0x9d6055d3c16,21,initializeCJSLoader node:internal/process/pre_execution:685:29,0x3f9e7a279938,~ +code-source-info,0x9d6055d3c16,67,21240,21333,C0O21273C6O21273C11O21255C16O21315C20O21332,, +code-creation,JS,10,26084,0x9d6055d3d76,90,initializeCJS node:internal/modules/cjs/loader:383:23,0x3f9e7a2765a0,~ +code-source-info,0x9d6055d3d76,63,10714,11192,C0O10816C5O10830C10O10830C15O10876C20O10900C23O10900C27O10898C31O10933C36O10933C39O10963C44O10968C48O10988C54O11016C57O11023C62O11023C66O11110C75O11131C80O11167C84O11125C89O11191,, +code-creation,JS,10,27917,0x9d6055d713e,19,getCanBeRequiredByUsersWithoutSchemeList node:internal/bootstrap/realm:313:50,0x1746951f6aa8,~ +code-source-info,0x9d6055d713e,9,9879,9948,C0O9888C11O9905C14O9895C18O9944,, +tick,0x1957d9be4,27917,0,0x0,3,0x0,0x9d6055d3c26,0x9d6055d3ad3,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +tick,0x19571ca90,27917,0,0x0,3,0x0,0x9d6055d3c26,0x9d6055d3ad3,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,27959,0x9d6055d722e,13,desc.value node:internal/per_context/primordials:387:32,0x1746951f4778,~ +code-source-info,0x9d6055d722e,6,11247,11306,C0O11264C7O11271C12O11294,, +code-creation,JS,10,28709,0x9d6055d8a66,13,SafeIterator node:internal/per_context/primordials:332:16,0x1746951f3ec8,~ +code-source-info,0x9d6055d8a66,6,9510,9570,C0O9529C3O9546C7O9544C12O9569,, +code-creation,JS,10,28750,0x9d6055d8c6e,13,next node:internal/per_context/primordials:335:9,0x1746951f3f18,~ +code-source-info,0x9d6055d8c6e,6,9579,9624,C0O9590C3O9607C8O9597C12O9618,, +code-creation,JS,10,28792,0x9d6055d8f5e,158,initializeCjsConditions node:internal/modules/helpers:65:33,0x3f9e7a2779c8,~ +code-source-info,0x9d6055d8f5e,64,1806,2166,C0O1836C8O1836C13O1887C21O1887C26O1944C37O2055C50O2119C95O2143C142O2071C150O2069C157O2165,, +tick,0x1956ec2f8,29125,0,0x0,3,0x0,0x9d6055d3d9a,0x9d6055d3c26,0x9d6055d3ad3,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,29167,0x9d6055d9cf6,315,Module._initPaths node:internal/modules/cjs/loader:1530:29,0x3f9e7a277250,~ +code-source-info,0x9d6055d9cf6,63,49693,50650,C0O49716C9O49736C14O49740C22O49754C28O49754C33O49793C42O49813C47O49817C55O49829C61O49829C66O50024C74O50040C77O50045C85O50061C93O50045C103O50083C106O50088C114O50104C125O50088C131O50144C140O50145C143O50150C157O50150C169O50189C173O50208C180O50237C183O50242C191O50242C198O50208C203O50284C210O50313C213O50318C221O50318C228O50284C233O50361C237O50381C244O50415C249O50443C254O50474C257O50479C262O50443C270O50497C273O50415C279O50381C284O50521C286O50533C292O50594C297O50615C302O50635C305O50615C309O50613C314O50649,, +code-creation,JS,11,29250,0x106789aa0,1600,resolve node:path:1095:10,0x3f9e7a25b0a0,^ +code-source-info,0x106789aa0,34,33911,34827,,, +code-creation,JS,11,29250,0x10678a100,392,SafeMap node:internal/per_context/primordials:413:16,0x1746951f4950,^ +code-source-info,0x10678a100,6,11975,11992,,, +code-creation,JS,11,29292,0x10678a2a0,664,getOptionValue node:internal/options:44:24,0x3f9e7a244968,^ +code-source-info,0x10678a2a0,17,985,1228,,, +code-creation,JS,11,29334,0x10678a560,168,exposeLazyInterfaces node:internal/util:683:30,0x3f9e7a243bf0,^ +code-source-info,0x10678a560,16,18482,18553,,, +code-creation,JS,11,30209,0x10678a620,2728,defineLazyProperties node:internal/util:600:30,0x3f9e7a2431f8,^ +code-source-info,0x10678a620,16,16645,17549,,, +code-creation,JS,11,30250,0x10678b0e0,496,getCLIOptionsFromBinding node:internal/options:18:34,0x3f9e7a244750,^ +code-source-info,0x10678b0e0,17,497,598,,, +code-creation,JS,11,30250,0x10678b2e0,136,next node:internal/per_context/primordials:335:9,0x1746951f3f18,^ +code-source-info,0x10678b2e0,6,9579,9624,,, +code-creation,JS,11,30250,0x10678b380,392,SafeSet node:internal/per_context/primordials:426:16,0x1746951f4ba0,^ +code-source-info,0x10678b380,6,12304,12321,,, +code-creation,JS,10,30292,0x9d6055dc2ce,91,initializeESMLoader node:internal/process/pre_execution:690:29,0x3f9e7a279988,~ +code-source-info,0x9d6055dc2ce,67,21363,21910,C0O21410C6O21410C11O21392C16O21451C20O21614C28O21618C34O21734C40O21734C45O21683C50O21691C55O21709C60O21780C66O21780C71O21799C73O21809C77O21823C79O21843C83O21867C85O21886C90O21909,, +tick,0x10105bec8,30334,0,0x0,3,0x0,0x9d6055dc2de,0x9d6055d3ad9,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,30334,0x9d6055dc446,50,initializeESM node:internal/modules/esm/utils:192:23,0x3f9e7a278770,~ +code-source-info,0x9d6055dc446,66,6390,6744,C10O6419C12O6435C18O6455C21O6455C24O6605C32O6605C36O6674C44O6674C49O6743,, +code-creation,JS,10,30667,0x9d6055dce2e,181,initializeDefaultConditions node:internal/modules/esm/utils:60:37,0x3f9e7a2785e0,~ +code-source-info,0x9d6055dce2e,66,1463,1809,C0O1493C8O1493C13O1544C21O1544C26O1601C37O1637C50O1705C95O1729C140O1657C147O1655C153O1753C160O1788C165O1776C173O1774C180O1808,, +code-creation,JS,10,30709,0x9d6055dd026,5,get hasLoadedAnyUserCJSModule node:internal/modules/cjs/loader:72:32,0x3f9e7a2749e0,~ +code-source-info,0x9d6055dd026,63,2217,2257,C0O2222C4O2255,, +code-creation,JS,10,30709,0x9d6055dd12e,53,loadPreloadModules node:internal/process/pre_execution:722:28,0x3f9e7a279a78,~ +code-source-info,0x9d6055dd12e,67,22398,22719,C0O22485C8O22485C13O22516C15O22553C21O22560C26O22637C32O22637C37O22593C42O22603C47O22681C52O22718,, +code-creation,JS,10,30750,0x9d6055dd32e,165,Module._preloadModules node:internal/modules/cjs/loader:1564:34,0x3f9e7a2772e0,~ +code-source-info,0x9d6055dd32e,63,50792,51381,C0O50807C5O50812C11O50838C12O50845C13O50851C17O50864C23O51059C33O51059C42O51109C45O51131C53O51156C58O51156C63O51131C68O51122C85O51184C88O51190C95O51195C100O51217C106O51230C114O51245C116O51245C119O51279C121O51295C125O51284C130O51314C135O51346C139O51314C144O51304C149O51266C153O51358C157O51371C164O51380,, +code-creation,JS,10,30792,0x9d6055dd60e,218,Module node:internal/modules/cjs/loader:252:16,0x3f9e7a2761e0,~ +code-source-info,0x9d6055dd60e,63,7243,7985,C14O7265C16O7273C20O7281C22O7293C25O7298C30O7298C35O7291C39O7313C52O7313C57O7352C62O7370C67O7370C73O7391C84O7391C89O7430C90O7444C94O7454C95O7466C99O7477C101O7491C105O7503C107O7533C112O7533C118O7541C126O7555C128O7593C133O7593C138O7637C143O7637C149O7733C159O7765C162O7765C171O7733C176O7849C181O7869C191O7891C194O7891C200O7849C205O7936C207O7941C212O7965C217O7984,, +code-creation,JS,10,30834,0x9d6055dd9f6,163,dirname node:path:1278:10,0x3f9e7a25b280,~ +code-source-info,0x9d6055dd9f6,34,38877,39546,C0O38890C8O38890C13O38933C19O38940C24O38953C26O38964C27O38985C34O38985C42O39024C44O39020C48O39058C51O39085C53O39113C57O39120C61O39127C63O39127C68O39146C73O39150C81O39189C83O39185C88O39219C92O39250C97O39269C101O39356C103O39135C108O39095C112O39397C114O39405C119O39419C129O39446C130O39451C136O39470C141O39483C143O39495C144O39500C157O39507C162O39542,, +code-creation,JS,10,30875,0x9d6055ddc8e,28,setOwnProperty node:internal/util:723:24,0x3f9e7a243df0,~ +code-source-info,0x9d6055ddc8e,16,19520,19687,C0O19542C5O19575C12O19653C22O19549C27O19685,, +code-creation,JS,10,30917,0x9d6055dde16,45,updateChildren node:internal/modules/cjs/loader:217:24,0x3f9e7a2760f0,~ +code-source-info,0x9d6055dde16,63,6182,6361,C0O6225C7O6231C15O6245C19O6263C23O6271C26O6271C33O6319C38O6319C44O6360,, +code-creation,JS,10,30917,0x9d6055de00e,40, node:internal/util:794:18,0x3f9e7a244148,~ +code-source-info,0x9d6055de00e,16,21797,21917,C0O21806C10O21841C13O21849C19O21847C25O21870C29O21882C35O21900C39O21913,, +code-creation,JS,10,30959,0x9d6055de126,28, node:internal/modules/cjs/loader:117:3,0x3f9e7a275ec0,~ +code-source-info,0x9d6055de126,63,3473,3564,C0O3480C8O3480C20O3522C27O3564,, +code-creation,JS,10,31000,0x9d6055de326,184,Module._nodeModulePaths node:internal/modules/cjs/loader:793:37,0x3f9e7a276950,~ +code-source-info,0x9d6055de326,63,24237,25417,C0O24292C5O24304C10O24304C17O24483C19O24492C24O24509C28O24534C29O24783C32O24809C36O24816C40O24825C42O24840C47O24850C48O24850C53O24882C58O24882C64O24924C66O24937C68O24933C73O24967C75O24977C77O24973C82O24996C89O25047C100O25047C108O25083C112O24996C117O25133C120O25151C124O25171C126O25177C131O25195C138O25206C144O25210C149O25232C156O25264C159O24858C164O24791C168O25351C176O25351C181O25400C183O25413,, +code-creation,JS,10,31042,0x9d6055de716,127,internalRequire node:internal/modules/cjs/loader:167:25,0x3f9e7a275fb0,~ +code-source-info,0x9d6055de716,63,4815,5116,C0O4832C8O4832C13O4860C15O4867C20O4881C36O4887C41O4881C42O4996C51O5008C60O5024C63O5038C76O5038C93O5095C102O5107C126O5115,, +code-creation,JS,10,31125,0x9d6055deafe,679,Module._load node:internal/modules/cjs/loader:950:24,0x3f9e7a276bb0,~ +code-creation,JS,10,31167,0x9d6055defee,89,logger node:internal/util/debuglog:100:18,0x3f9e7a24a9f0,~ +code-source-info,0x9d6055defee,22,2965,3160,C0O2965C3O2997C24O3021C30O3038C34O3028C38O3043C39O3058C45O3075C51O3084C55O3065C60O3089C61O3105C65O3112C72O3125C77O3121C83O3112C88O3150,, +code-creation,JS,10,31209,0x9d6055df246,3, node:internal/per_context/primordials:338:21,0x1746951f3f68,~ +code-source-info,0x9d6055df246,6,9645,9674,C0O9656C2O9668,, +code-creation,JS,10,31209,0x9d6055df31e,140,debug node:internal/util/debuglog:81:15,0x3f9e7a24a950,~ +code-source-info,0x9d6055df31e,22,2453,2847,C0O2453C3O2472C6O2472C9O2580C16O2601C22O2588C30O2586C36O2620C42O2656C47O2659C50O2656C54O2684C75O2708C81O2725C85O2715C89O2730C90O2745C96O2762C102O2771C106O2752C111O2776C112O2792C116O2799C123O2812C128O2808C134O2799C139O2837,, +code-creation,JS,10,31250,0x9d6055df4ce,41,init node:internal/util/debuglog:77:16,0x3f9e7a24a900,~ +code-source-info,0x9d6055df4ce,22,2355,2438,C0O2364C10O2370C14O2368C16O2407C26O2417C33O2415C40O2437,, +code-creation,JS,10,31250,0x9d6055df5be,2,testEnabled node:internal/util/debuglog:31:19,0x9d6055cd170,~ +code-source-info,0x9d6055df5be,22,958,969,C0O964C1O969,, +code-creation,JS,10,31292,0x9d6055df736,116,debuglogImpl node:internal/util/debuglog:54:22,0x3f9e7a24a6b8,~ +code-source-info,0x9d6055df736,22,1554,2091,C0O1554C9O1573C18O1587C23O1614C34O1647C39O1655C43O1647C45O1666C55O1666C59O1698C71O1709C75O1714C83O2030C97O2048C99O2046C103O2066C112O2083C115O2089,, +code-creation,JS,10,31292,0x9d6055df8ee,10, node:internal/modules/cjs/loader:357:66,0x3f9e7a276550,~ +code-source-info,0x9d6055df8ee,63,9947,9972,C0O9959C2O9965C9O9971,, +code-creation,JS,10,31334,0x9d6055df99e,2,noop node:internal/util/debuglog:46:14,0x3f9e7a24a618,~ +code-source-info,0x9d6055df99e,22,1404,1412,C1O1411,, +code-creation,JS,10,31334,0x9d6055dfb5e,58,reportModuleToWatchMode node:internal/modules/cjs/loader:228:33,0x3f9e7a276140,~ +code-source-info,0x9d6055dfb5e,63,6510,6634,C0O6525C5O6529C13O6570C19O6582C22O6590C32O6614C41O6615C51O6590C57O6633,, +code-creation,JS,10,31375,0x9d6055dfcae,13, node:internal/modules/cjs/loader:119:45,0x3f9e7a275f10,~ +code-source-info,0x9d6055dfcae,63,3613,3656,C0O3631C3O3627C8O3631C12O3656,, +code-creation,JS,10,31459,0x9d6055e01ee,881,Module._resolveFilename node:internal/modules/cjs/loader:1058:35,0x3f9e7a276c20,~ +code-creation,JS,10,31500,0x9d6055e083e,77,normalizeRequirableId node:internal/bootstrap/realm:292:31,0x1746951f6a08,~ +code-source-info,0x9d6055e083e,9,9252,9576,C0O9263C10O9267C17O9336C27O9336C33O9371C38O9389C43O9389C50O9435C52O9455C55O9475C60O9493C65O9493C72O9533C74O9543C75O9555C76O9572,, +code-creation,JS,10,31500,0x9d6055e0986,18,canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36,0x1746951f69b8,~ +code-source-info,0x9d6055e0986,9,9152,9220,C0O9163C7O9208C12O9208C17O9216,, +code-creation,JS,10,31542,0x9d6055e0c6e,345,Module._resolveLookupPaths node:internal/modules/cjs/loader:839:38,0x3f9e7a2769e0,~ +code-source-info,0x9d6055e0c6e,63,25560,26839,C0O25582C5O25600C10O25600C17O25638C25O25638C30O25682C31O25694C32O25737C39O25741C47O25775C52O25801C59O25808C66O25821C72O25821C80O25855C87O25872C93O25872C101O25906C108O25925C114O25938C120O25938C128O25972C133O26023C135O26034C142O26044C149O26051C158O26069C165O26097C168O26077C173O26117C178O26158C183O26117C190O26185C195O26217C209O26217C214O26281C220O26288C230O26307C231O26354C235O26377C241O26391C247O26562C252O26574C266O26574C271O26629C273O26646C274O26654C282O26721C290O26654C295O26747C304O26748C307O26753C312O26768C317O26753C329O26782C337O26782C342O26820C344O26837,, +code-creation,JS,10,31584,0x9d6055e0f8e,76,trySelfParentPath node:internal/modules/cjs/loader:520:27,0x3f9e7a2767d0,~ +code-source-info,0x9d6055e0f8e,63,15194,15461,C0O15207C4O15222C5O15235C6O15252C12O15282C16O15291C17O15312C24O15315C29O15338C36O15341C44O15383C47O15398C52O15398C59O15406C62O15411C66O15404C69O15415C72O15436C73O15449C75O15460,, +code-creation,JS,10,31667,0x9d6055e1246,249,trySelf node:internal/modules/cjs/loader:539:17,0x3f9e7a276820,~ +code-source-info,0x9d6055e1246,63,15685,16597,C0O15711C4O15730C5O15743C6O15786C11O15804C16O15804C22O15763C27O15774C32O15836C36O15852C43O15875C49O15901C50O15914C51O15926C53O15959C57O15951C62O15971C67O15997C72O16043C84O16001C91O16059C96O16077C99O16111C104O16116C109O16077C114O16075C120O16140C121O16153C125O16205C131O16205C136O16179C141O16250C146O16308C151O16330C155O16308C162O16372C165O16372C172O16399C175O16399C185O16279C197O16257C202O16441C214O16462C217O16468C224O16473C229O16509C236O16553C240O16515C245O16509C246O16583C248O16583,, +code-creation,JS,10,31709,0x9d6055e161e,184,readPackageScope node:internal/modules/package_json_reader:149:26,0x3f9e7a2780d0,~ +code-source-info,0x9d6055e161e,65,4262,5057,C0O4305C7O4339C10O4305C16O4351C18O4395C23O4406C28O4406C33O4430C40O4485C43O4447C49O4495C62O4507C69O4651C75O4677C78O4688C88O4715C90O4713C94O4688C102O4729C103O4742C104O4753C111O4792C116O4796C120O4757C127O4823C128O4836C129O4861C134O4885C136O4883C140O4861C145O4905C151O4921C158O4944C164O4965C170O4984C171O5017C173O5017C178O4421C182O5042C183O5055,, +tick,0x19571ca18,31917,0,0x0,3,0x0,0x9d6055e045f,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,31917,0x9d6055e1dde,43,isEnabled node:internal/process/permission:16:12,0x3f9e7a263dc8,~ +code-source-info,0x9d6055e1dde,46,324,559,C0O333C6O410C12O410C17O391C22O445C25O470C32O468C38O525C42O555,, +code-creation,JS,10,32000,0x9d6055e2066,22,readPackage node:internal/modules/package_json_reader:140:21,0x3f9e7a278080,~ +code-source-info,0x9d6055e2066,65,3950,4020,C0O3968C5O3980C11O3980C17O3975C21O4018,, +code-creation,JS,10,32042,0x9d6055e24de,573,read node:internal/modules/package_json_reader:48:14,0x3f9e7a277e98,~ +code-source-info,0x9d6055e24de,65,1125,3862,C9O1165C16O1138C21O1144C26O1155C31O1183C36O1193C41O1193C48O1214C53O1227C58O1227C63O1241C64O1299C71O1327C74O1327C79O1299C86O1264C93O1279C97O1377C104O1434C109O1454C114O1475C119O1568C124O1592C131O1916C139O1926C148O1956C150O1974C152O2003C157O2027C162O2036C170O2034C180O2083C184O2104C196O2173C203O2184C222O2211C228O2225C234O2211C238O2209C246O2261C254O2110C259O2104C260O2524C268O2557C274O2568C281O2583C285O2575C288O2538C292O2600C297O2611C301O2631C303O2631C304O2663C305O2677C309O2765C317O2769C324O2832C332O2880C336O2871C340O2897C348O2901C355O2964C363O3012C367O3003C371O3029C379O3033C386O3115C390O3106C394O3135C402O3139C409O3221C413O3212C417O3296C425O3300C432O3357C439O3362C444O3387C451O3392C456O3436C460O3427C464O3453C470O3516C476O3516C481O3497C486O3551C489O3562C501O3612C506O3646C516O3560C522O3682C528O3729C533O3729C538O3760C543O3769C548O3769C554O3815C559O3821C564O3821C570O3846C572O3860,, +code-creation,JS,10,32084,0x9d6055e28fe,3,toNamespacedPath node:path:1269:19,0x3f9e7a25b230,~ +code-source-info,0x9d6055e28fe,34,38744,38804,C0O38788C2O38800,, +code-creation,JS,10,32375,0x9d6055e6da6,889,Module._findPath node:internal/modules/cjs/loader:610:28,0x3f9e7a2768c0,~ +code-creation,JS,10,32459,0x9d6055e73f6,45,isAbsolute node:path:1159:13,0x3f9e7a25b140,~ +code-source-info,0x9d6055e73f6,34,35583,35729,C0O35596C8O35596C13O35642C19O35649C26O35667C31O35667C39O35706C41O35702C44O35725,, +code-creation,JS,10,32500,0x9d6055e7596,85,stat node:internal/modules/cjs/loader:185:14,0x3f9e7a276000,~ +code-source-info,0x9d6055e7596,63,5267,5668,C0O5282C5O5298C10O5298C17O5328C23O5373C28O5383C33O5383C39O5402C41O5430C43O5444C44O5468C49O5468C54O5500C61O5533C66O5613C71O5623C76O5623C82O5652C84O5666,, +code-creation,JS,10,32542,0x9d6055e76ee,45,tryExtensions node:internal/modules/cjs/loader:487:23,0x3f9e7a276730,~ +code-source-info,0x9d6055e76ee,63,14187,14385,C0O14229C2O14241C6O14234C11O14277C16O14300C19O14294C23O14277C29O14319C31O14341C33O14357C34O14250C39O14216C43O14370C44O14383,, +code-creation,JS,10,32542,0x9d6055e7836,62,tryFile node:internal/modules/cjs/loader:472:17,0x3f9e7a2766e0,~ +code-source-info,0x9d6055e7836,63,13680,13900,C0O13717C5O13717C10O13739C11O13746C16O13755C17O13762C18O13767C26O13771C34O13813C36O13827C41O13839C46O13839C51O13860C52O13867C57O13874C61O13898,, +code-creation,JS,10,32584,0x9d6055e798e,42,toRealPath node:internal/modules/helpers:54:20,0x3f9e7a277978,~ +code-source-info,0x9d6055e798e,64,1545,1658,C0O1563C5O1573C10O1586C17O1606C20O1617C28O1636C35O1573C41O1656,, +code-creation,JS,10,32792,0x9d6055e80ae,1026,realpathSync node:fs:2611:22,0x3f9e7a26d4b0,~ +tick,0x1957d960c,35750,0,0x0,3,0x0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +tick,0x100999a3c,35792,0,0x0,3,0x0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +tick,0x19571ca54,35792,0,0x0,3,0x0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,35792,0x9d6055eedee,135,getOptions node:internal/fs/utils:323:20,0x3f9e7a272c50,~ +code-source-info,0x9d6055eedee,60,7457,8064,C9O7484C16O7502C27O7562C29O7584C30O7592C36O7631C41O7675C43O7699C47O7714C54O7749C60O7788C78O7794C83O7788C84O7881C91O7890C96O7908C99O7931C104O7908C108O7957C114O7985C119O8013C127O7985C132O8047C134O8062,, +code-creation,JS,10,36750,0x9d6055f0e7e,48,assertEncoding node:internal/fs/utils:158:24,0x3f9e7a272728,~ +code-source-info,0x9d6055f0e7e,60,3655,3832,C0O3670C6O3687C9O3694C14O3694C21O3737C24O3764C40O3770C45O3764C47O3831,, +tick,0x195695138,36792,0,0x0,3,0x0,0x9d6055e80b4,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,36834,0x9d6055f0f96,20,toPathIfFileURL node:internal/url:1479:25,0x3f9e7a2603b0,~ +code-source-info,0x9d6055f0f96,39,42746,42859,C0O42766C3O42771C9O42797C11O42818C12O42821C15O42828C19O42857,, +code-creation,JS,10,38375,0x9d6055f4046,45,isURL node:internal/url:755:15,0x3f9e7a25ef78,~ +code-source-info,0x9d6055f4046,39,21285,21396,C0O21296C12O21315C21O21330C27O21347C34O21374C40O21303C44O21394,, +code-creation,JS,10,38417,0x9d6055f41ce,81, node:internal/fs/utils:697:38,0x3f9e7a2736f0,~ +code-source-info,0x9d6055f41ce,60,18901,19171,C14O18934C22O18967C25O18967C31O18993C36O19024C49O18999C54O18993C55O19089C68O19089C74O19126C76O19155C78O19155C80O19170,, +tick,0x1957d9c58,38417,0,0x0,3,0x0,0x9d6055e80c0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,38417,0x9d6055f43de,110, node:internal/fs/utils:366:35,0x3f9e7a272cf0,~ +code-source-info,0x9d6055f43de,60,8792,9388,C16O8856C21O8909C26O8909C31O9003C37O9026C41O9054C45O9071C51O9071C60O9122C64O9143C69O9143C76O9188C77O9195C78O9215C94O9215C100O9336C104O9358C106O9358C107O9375C109O9386,, +code-creation,JS,10,38459,0x9d6055f4556,16,isUint8Array node:internal/util/types:13:22,0x3f9e7a244e20,~ +code-source-info,0x9d6055f4556,18,257,342,C0O269C5O276C12O323C15O340,, +code-creation,JS,10,38584,0x9d6055f49de,62,splitRoot node:fs:2567:33,0x3f9e7a26d3c0,~ +code-source-info,0x9d6055f49de,55,67653,67845,C0O67678C2O67689C6O67683C11O67710C16O67714C24O67752C26O67748C31O67780C44O67787C49O67819C50O67699C55O67665C59O67830C61O67841,, +code-creation,JS,10,38625,0x9d6055f4b16,20,nextPart node:fs:2600:31,0x3f9e7a26d460,~ +code-source-info,0x9d6055f4b16,55,68560,68618,C0O68573C14O68580C19O68614,, +code-creation,JS,10,38667,0x9d6055f4c66,63,handleErrorFromBinding node:internal/fs/utils:349:32,0x3f9e7a272ca0,~ +code-source-info,0x9d6055f4c66,60,8153,8651,C0O8171C6O8234C11O8234C16O8256C24O8256C29O8313C31O8313C32O8338C38O8566C43O8593C51O8566C56O8639C60O8629C62O8650,, +code-creation,JS,10,38667,0x9d6055f4db6,34,isFileType node:fs:206:20,0x3f9e7a26b5b8,~ +code-source-info,0x9d6055f4db6,55,5086,5327,C0O5220C2O5225C6O5232C10O5266C15O5273C20O5289C22O5304C24O5302C30O5312C33O5325,, +code-creation,JS,10,38750,0x9d6055f52d6,72,encodeRealpathResult node:fs:2576:30,0x3f9e7a26d410,~ +code-source-info,0x9d6055f52d6,55,67879,68137,C0O67901C4O67926C10O67946C17O67955C22O67971C24O67985C25O68005C30O68012C35O68012C41O68040C48O68049C53O68069C55O68085C56O68108C61O68125C66O68108C71O68135,, +code-creation,JS,10,38834,0x9d6055f55be,245,Module.load node:internal/modules/cjs/loader:1194:33,0x3f9e7a276d50,~ +code-source-info,0x9d6055f55be,63,38021,38862,C0O38036C8O38082C16O38036C21O38090C26O38103C32O38090C36O38114C38O38128C42O38142C45O38162C52O38179C55O38184C60O38184C66O38162C71O38153C75O38225C78O38225C83O38302C91O38306C101O38359C106O38370C112O38386C124O38392C129O38386C130O38436C133O38443C140O38454C144O38465C150O38485C151O38497C155O38531C160O38531C164O38643C169O38678C174O38689C186O38729C191O38736C196O38736C203O38750C205O38748C210O38787C215O38796C220O38796C227O38828C232O38837C237O38837C244O38861,, +code-creation,JS,10,38875,0x9d6055f597e,99,findLongestRegisteredExtension node:internal/modules/cjs/loader:502:40,0x3f9e7a276780,~ +code-source-info,0x9d6055f597e,63,14608,15045,C0O14636C5O14641C10O14641C16O14667C18O14691C20O14717C22O14785C36O14738C44O14785C49O14799C51O14818C55O14827C56O14837C61O14846C63O14895C68O14914C74O14953C77O14964C84O14975C89O14997C91O15021C92O14722C96O15030C98O15043,, +code-creation,JS,10,38917,0x9d6055f5b96,355,basename node:path:1309:11,0x3f9e7a25b2d0,~ +code-source-info,0x9d6055f5b96,34,39650,42069,C0O39671C4O39703C12O39703C17O39738C25O39738C30O39785C32O39802C35O39829C37O39840C41O39875C47O39882C52O39896C57O39911C61O39903C66O39927C68O39938C73O39956C75O39966C76O39993C80O40000C84O40034C87O40062C91O40069C95O40076C96O40076C101O40110C106O40110C112O40154C114O40167C116O40163C121O40337C125O40370C127O40380C131O40397C135O40443C137O40464C142O40630C144O40664C146O40685C150O40712C151O40723C156O40794C158O40807C161O40807C166O40803C171O40866C178O40879C183O41015C190O41178C193O41205C198O40084C203O40044C207O41280C209O41290C214O41307C221O41342C223O41350C228O41377C233O41391C247O41398C252O41437C253O41466C257O41473C261O41480C262O41480C267O41499C272O41503C280O41542C282O41538C287O41706C291O41737C293O41747C297O41762C301O41792C303O41800C308O41920C310O41950C312O41958C316O41488C321O41448C325O41982C327O41990C332O42004C334O42014C335O42019C349O42026C354O42065,, +code-creation,JS,10,39000,0x9d6055f6146,494,Module._extensions..js node:internal/modules/cjs/loader:1389:37,0x3f9e7a276f58,~ +code-source-info,0x9d6055f6146,63,44948,46869,C0O45047C5O45061C10O45061C16O45080C18O45091C25O45101C34O45134C39O45146C40O45160C46O45188C51O45201C60O45201C67O45239C76O45243C83O45303C88O45321C93O45321C105O45441C112O45445C122O45452C127O45600C132O45618C137O45618C143O45656C146O45662C154O45704C159O45709C164O45721C174O45709C181O45766C186O45766C192O45825C211O45825C217O45996C220O46007C227O46013C232O46041C237O46079C243O46097C252O46097C262O46092C265O46210C269O46256C276O46290C279O46315C287O46322C291O46364C301O46322C308O46290C322O46256C329O46392C333O46449C344O46449C357O46418C364O46427C368O46512C374O46524C376O46559C385O46559C393O46605C396O46599C400O46637C412O46654C425O46663C438O46690C447O46721C452O46690C468O46744C473O46744C478O46809C480O46809C481O46839C486O46839C493O46868,, +code-creation,JS,10,39125,0x9d6055f65de,472,readFileSync node:fs:446:22,0x3f9e7a26ba18,~ +code-source-info,0x9d6055f65de,55,11263,12881,C0O11283C5O11304C10O11293C17O11344C24O11353C29O11375C36O11384C41O11403C46O11408C52O11431C57O11449C64O11466C67O11466C72O11449C79O11501C84O11516C91O11535C94O11557C99O11535C104O11516C110O11564C111O11589C116O11589C121O11643C129O11661C132O11664C137O11687C150O11664C156O11718C159O11718C165O11760C170O11778C173O11760C182O11794C189O11815C191O11824C193O11870C195O11915C196O11924C201O11937C206O11966C218O11975C224O12023C226O12037C227O12046C232O12070C237O12126C253O12082C259O12140C261O12147C268O12187C269O12181C276O12194C281O12059C287O12318C292O12334C302O12334C308O12359C327O12371C333O12421C334O12435C339O12452C344O12487C351O12487C358O12452C363O12523C365O12530C372O12564C373O12564C378O12218C382O12579C386O12598C391O12601C396O12601C401O12619C402O12628C407O12690C412O12706C417O12706C426O12737C428O12745C433O12775C440O12775C447O12809C453O12835C458O12852C463O12835C469O12865C471O12879,, +tick,0x10105bed8,39209,0,0x0,3,0x0,0x9d6055f0e8c,0x9d6055eee56,0x9d6055f65e8,0x9d6055f6182,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,39250,0x9d6055f6b2e,30,isEncoding node:buffer:569:40,0x3f9e7a24f990,~ +code-source-info,0x9d6055f6b2e,24,15940,16072,C0O15955C6O16003C12O16010C20O16028C23O16028C28O16056C29O16070,, +tick,0x1956951d0,40709,0,0x0,3,0x0,0x9d6055f0e8c,0x9d6055eee56,0x9d6055f65e8,0x9d6055f6182,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,40709,0x9d6055f9876,30,normalizeEncoding node:internal/util:212:27,0x3f9e7a2424f0,~ +code-source-info,0x9d6055f9876,16,5641,5746,C0O5651C7O5674C14O5692C19O5705C21O5719C22O5722C25O5729C29O5744,, +code-creation,JS,10,40750,0x9d6055f995e,9,isInt32 node:internal/validators:43:17,0x1746951fec20,~ +code-source-info,0x9d6055f995e,15,851,894,C0O863C2O887C5O876C8O892,, +code-creation,JS,10,40750,0x9d6055f9a4e,42, node:internal/fs/utils:727:42,0x3f9e7a273790,~ +code-source-info,0x9d6055f9a4e,60,19896,20054,C14O19951C19O19951C24O19985C29O19985C34O20017C37O20024C41O20052,, +code-creation,JS,10,40792,0x9d6055f9b8e,106,possiblyTransformPath node:internal/fs/utils:715:31,0x3f9e7a273740,~ +code-source-info,0x9d6055f9b8e,60,19572,19853,C0O19583C5O19598C10O19598C16O19617C22O19655C27O19662C31O19680C32O19691C39O19698C42O19698C47O19691C51O19723C56O19728C62O19750C67O19757C73O19779C80O19797C85O19809C88O19809C93O19797C98O19786C102O19832C103O19839C105O19851,, +code-creation,JS,10,40834,0x9d6055f9fce,515,stringToFlags node:internal/fs/utils:584:23,0x3f9e7a273560,~ +code-source-info,0x9d6055f9fce,60,15805,17039,C14O15833C20O15870C25O15870C30O15902C32O15915C33O15923C38O15948C42O15964C43O15972C202O16004C206O16020C207O16070C214O16088C216O16086C219O16095C220O16112C224O16126C225O16178C232O16194C234O16192C237O16201C238O16218C245O16235C247O16233C253O16245C255O16243C258O16254C259O16304C266O16321C268O16319C274O16331C276O16329C282O16342C284O16340C287O16349C288O16367C295O16384C297O16382C303O16394C305O16392C308O16401C309O16451C316O16468C318O16466C324O16478C326O16476C332O16487C334O16485C337O16494C338O16511C345O16529C347O16527C353O16539C355O16537C358O16548C359O16598C366O16616C368O16614C374O16626C376O16624C382O16637C384O16635C387O16644C388O16694C395O16712C397O16710C403O16722C405O16720C411O16733C413O16731C416O16740C417O16758C424O16776C426O16774C432O16786C434O16784C437O16793C438O16843C445O16861C447O16859C453O16871C455O16869C461O16880C463O16878C466O16887C467O16937C474O16955C476O16953C482O16965C484O16963C490O16974C492O16972C495O16981C496O16989C509O16995C514O16989,, +code-creation,JS,10,41084,0x9d6055fba06,463,Module._compile node:internal/modules/cjs/loader:1330:37,0x3f9e7a276ec8,~ +code-source-info,0x9d6055fba06,63,42944,44762,C0O42972C2O42989C4O43019C9O43019C15O43027C23O43041C25O43061C30O43073C35O43123C40O43123C46O43168C51O43168C57O43236C69O43236C75O43297C77O43305C85O43309C94O43352C101O43373C107O43467C110O43479C117O43483C125O43514C128O43536C136O43561C143O43565C152O43536C160O43527C170O43758C177O43765C182O43778C188O43778C193O43765C198O43758C204O43842C209O43855C215O43922C223O43943C229O43974C231O43970C236O43996C240O44011C246O44025C252O44044C257O44072C262O44122C267O44127C272O44127C278O44164C283O44164C289O44208C291O44239C296O44268C297O44294C300O44302C306O44319C311O44328C316O44340C324O44338C330O44359C334O44387C355O44396C363O44532C368O44571C377O44609C386O44618C395O44627C404O44635C413O44645C423O44541C429O44662C433O44688C439O44698C445O44715C450O44724C454O44734C460O44746C462O44760,, +code-creation,JS,10,41125,0x9d6055fc0f6,364,wrapSafe node:internal/modules/cjs/loader:1257:18,0x3f9e7a276e48,~ +code-source-info,0x9d6055fc0f6,63,40039,42615,C0O40039C14O40121C26O40135C31O40121C36O40405C44O40440C49O40447C54O40447C60O40481C89O40481C95O41013C101O41035C115O41105C126O41035C131O41131C145O41138C150O41182C151O41205C159O41295C196O41295C202O42014C206O42046C224O42086C229O42108C234O42109C240O42126C245O42134C253O42134C258O42253C264O42275C278O42345C289O42275C294O42385C298O42394C310O42417C315O42429C322O42440C327O42498C335O42498C340O42479C345O42549C356O42549C361O42599C363O42599,, +code-creation,JS,10,41209,0x9d6055fc4ce,118,internalCompileFunction node:internal/vm:73:33,0x3f9e7a25b7e0,~ +code-source-info,0x9d6055fc4ce,36,2177,3028,C0O2366C35O2366C41O2568C45O2604C50O2641C54O2632C58O2679C64O2704C69O2733C73O2724C77O2770C85O2817C90O2854C94O2845C98O2881C102O2930C105O2969C110O2930C115O3012C117O3026,, +code-creation,Eval,10,41375,0x9d6055fcd36,5, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1,0x9d6055fcbf0,~ +script-source,81,/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js,const cluster = require('cluster')\n\ncluster.on('fork'\x2C () => {\n throw new Error('0x does not support clustering.')\n})\n +code-source-info,0x9d6055fcd36,81,0,119,C0O0C4O119,, +code-creation,JS,10,41417,0x9d6055fce1e,29, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1,0x9d6055fccb0,~ +code-source-info,0x9d6055fce1e,81,0,119,C0O16C3O16C8O44C21O44C28O118,, +code-creation,JS,10,41459,0x9d6055fd0de,52,registerImportModuleDynamically node:internal/vm:63:41,0x3f9e7a25b790,~ +code-source-info,0x9d6055fd0de,36,1818,2143,C0O1898C6O1898C11O1866C16O1958C22O1958C27O1939C32O2014C37O2082C45O1999C51O2142,, +code-creation,JS,10,41500,0x9d6055fd2ae,19,importModuleDynamicallyWrap node:internal/vm/module:429:37,0x3f9e7a27a938,~ +code-source-info,0x9d6055fd2ae,68,11681,12124,C0O11681C13O11750C18O12122,, +code-creation,JS,10,41959,0x9d6055fe26e,63,registerModule node:internal/modules/esm/utils:135:24,0x3f9e7a278680,~ +code-source-info,0x9d6055fe26e,66,4020,4540,C0O4062C2O4071C4O4070C8O4102C10O4119C12O4115C19O4170C21O4166C26O4404C27O4411C28O4455C41O4481C45O4497C50O4514C55O4514C62O4539,, +code-creation,JS,10,42000,0x9d6055fe68e,215,makeRequireFunction node:internal/modules/helpers:127:29,0x3f9e7a277b08,~ +code-source-info,0x9d6055fe68e,64,3790,6294,C0O3790C22O3849C27O3849C30O3849C32O3865C37O3873C46O3907C64O3913C69O3907C70O4005C72O4016C92O4048C97O4052C108O4068C112O4048C114O4095C119O4095C122O4095C124O4127C130O4136C136O4164C145O5314C150O5800C152O5816C156O6067C158O6081C162O6093C177O6133C185O6093C190O6199C193O6227C197O6218C201O6243C204O6266C208O6257C212O6277C214O6292,, +code-creation,JS,10,42042,0x9d6055fe93e,35,lazyModule node:internal/modules/helpers:110:20,0x3f9e7a277ab8,~ +code-source-info,0x9d6055fe93e,64,3079,3173,C0O3086C12O3107C17O3145C24O3094C30O3156C34O3171,, +tick,0x19579ebd4,42042,0,0x0,3,0x0,0x9d6055fd103,0x9d6055fc53c,0x9d6055fc1ba,0x9d6055fba4b,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,42084,0x9d6055fecae,14,require node:internal/modules/helpers:174:31,0x9d6055fe550,~ +code-source-info,0x9d6055fecae,64,5340,5464,C0O5433C3O5444C8O5444C13O5458,, +code-creation,JS,10,42084,0x9d6055fedf6,127,Module.require node:internal/modules/cjs/loader:1227:36,0x3f9e7a276dc0,~ +code-source-info,0x9d6055fedf6,63,39157,39448,C0O39166C8O39166C13O39194C15O39201C20O39215C36O39221C41O39215C42O39330C51O39342C60O39358C63O39372C76O39372C93O39427C102O39439C126O39447,, +code-creation,JS,10,42125,0x9d6055ff026,65,loadBuiltinModule node:internal/modules/helpers:93:27,0x3f9e7a277a68,~ +code-source-info,0x9d6055ff026,64,2613,2967,C0O2631C5O2650C10O2650C17O2682C18O2689C19O2777C24O2791C29O2795C34O2795C40O2806C48O2806C53O2926C58O2926C62O2954C64O2965,, +code-creation,JS,10,42125,0x9d6055ff166,18,canBeRequiredByUsers node:internal/bootstrap/realm:284:30,0x1746951f6968,~ +code-source-info,0x9d6055ff166,9,9060,9115,C0O9071C7O9103C12O9103C17O9111,, +code-creation,JS,10,42167,0x9d6055ff24e,10, node:internal/modules/helpers:37:66,0x3f9e7a2776c0,~ +code-source-info,0x9d6055ff24e,64,1032,1057,C0O1044C2O1050C9O1056,, +code-creation,JS,10,42167,0x9d6055ff3e6,145,compileForPublicLoader node:internal/bootstrap/realm:322:25,0x1746951f6b48,~ +code-source-info,0x9d6055ff3e6,9,10128,10818,C0O10137C5O10156C10O10182C15O10156C22O10309C32O10352C49O10315C54O10309C55O10389C60O10389C64O10431C70O10620C77O10651C85O10620C91O10675C96O10693C106O10709C109O10725C114O10709C118O10691C122O10750C127O10750C131O10775C136O10775C140O10806C144O10814,, +code-creation,Eval,10,42250,0x9d6055ff776,5, node:cluster:1:1,0x9d6055ff630,~ +code-source-info,0x9d6055ff776,82,0,1376,C0O0C4O1376,, +code-creation,JS,10,42292,0x9d6055ff826,47, node:cluster:1:1,0x9d6055ff6f0,~ +code-source-info,0x9d6055ff826,82,0,1376,C0O1190C5O1266C13O1245C27O1312C32O1357C37O1329C41O1327C46O1375,, +code-creation,Eval,10,42500,0x116d9d7095a6,5, node:internal/cluster/primary:1:1,0x116d9d709240,~ +code-source-info,0x116d9d7095a6,83,0,10127,C0O0C4O10127,, +code-creation,JS,10,42834,0x116d9d709f86,632, node:internal/cluster/primary:1:1,0x116d9d709520,~ +tick,0x100be3924,43000,1,0x100a09554,2,0x0,0x1067893e4,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,43209,0x116d9d70c04e,5, node:child_process:1:1,0x116d9d70baa8,~ +code-source-info,0x116d9d70c04e,84,0,27198,C0O0C4O27198,, +code-creation,JS,10,44167,0x116d9d70cc4e,881, node:child_process:1:1,0x116d9d70bfc8,~ +code-source-info,0x116d9d70cc4e,84,0,27198,C0O0C287O1159C293O1175C299O1199C305O1225C311O1247C317O1276C323O1298C329O1321C335O1343C341O1367C347O1392C353O1419C359O1438C365O1454C370O1478C376O1511C382O1534C388O1545C394O1572C400O1596C406O1626C412O1771C418O1771C423O1669C429O1693C435O1718C441O1740C447O1756C452O1827C458O1827C463O1805C469O1871C475O1871C480O1904C493O1905C499O1871C501O1989C507O1989C512O1978C518O2051C521O2051C526O2016C532O2033C538O2149C544O2149C549O2092C555O2113C560O2127C566O2187C572O2212C578O2246C584O2283C590O2307C596O2378C602O2378C607O2349C613O2363C619O2426C625O2426C630O2405C636O2594C642O2594C647O2466C653O2477C659O2500C665O2517C671O2536C677O2556C683O2574C689O2648C695O2648C699O2648C701O2766C704O2693C710O2710C716O2726C722O2742C728O2801C734O2801C736O2829C739O2837C746O2846C749O2829C751O2863C752O2863C754O6932C759O7336C769O7395C780O7299C785O13751C795O13810C806O13710C811O27068C821O27089C827O27103C833O27119C839O27127C845O27139C851O27155C857O27167C863O27175C869O27184C875O27083C880O27197,, +tick,0x1957d9538,44292,1,0x1009f5df0,5,0x0,0x1067898a4,0x116d9d70ce57,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,44667,0x116d9d712ffe,5, node:internal/child_process:1:1,0x116d9d712340,~ +code-source-info,0x116d9d712ffe,85,0,31777,C0O0C4O31777,, +code-creation,JS,10,45750,0x116d9d7146d6,1312, node:internal/child_process:1:1,0x116d9d712f78,~ +code-creation,JS,10,45792,0x116d9d714e9e,29, node:internal/child_process:536:1,0x116d9d713d70,~ +code-source-info,0x116d9d714e9e,85,13890,14887,C3O13940C12O13956C21O13981C28O14887,, +tick,0x1957d9920,45834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,46542,0x116d9d71a9b6,5, node:net:1:1,0x116d9d7193c0,~ +code-source-info,0x116d9d71a9b6,86,0,65921,C0O0C4O65921,, +code-creation,JS,10,48792,0x116d9d71e116,3499, node:net:1:1,0x116d9d71a930,~ +tick,0x100c25220,48959,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +tick,0x19571ca38,48959,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,49125,0x116d9d725426,5, node:stream:1:1,0x116d9d725220,~ +code-source-info,0x116d9d725426,87,0,4792,C0O0C4O4792,, +code-creation,JS,10,49334,0x116d9d725b46,1072, node:stream:1:1,0x116d9d7253a0,~ +tick,0x101f1eae4,49417,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,49542,0x116d9d726fae,5, node:internal/streams/operators:1:1,0x116d9d726c68,~ +code-source-info,0x116d9d726fae,88,0,10772,C0O0C4O10772,, +code-creation,JS,10,49917,0x116d9d727abe,560, node:internal/streams/operators:1:1,0x116d9d726f28,~ +code-source-info,0x116d9d727abe,88,0,10772,C0O0C163O56C166O56C171O23C177O40C183O234C186O234C191O112C196O118C202O145C208O171C213O193C219O218C225O334C228O334C233O272C239O295C245O314C251O415C254O415C259O374C265O388C271O470C274O470C279O457C285O535C288O535C292O535C294O612C297O612C302O582C308O695C311O695C316O666C322O678C328O752C331O752C336O738C341O789C347O811C353O822C359O835C365O845C371O860C377O871C383O888C389O906C395O930C400O971C403O971C407O971C409O1002C412O1002C416O1002C418O6699C439O6659C441O10462C455O10517C466O10610C472O10618C478O10628C484O10639C490O10646C496O10654C502O10495C506O10674C518O10714C524O10723C530O10734C536O10744C542O10755C548O10763C554O10708C559O10771,, +code-creation,Eval,10,50167,0x116d9d7299f6,5, node:internal/abort_controller:1:1,0x116d9d7294a0,~ +code-source-info,0x116d9d7299f6,89,0,12472,C0O0C4O12472,, +code-creation,JS,10,50584,0x116d9d72b34e,1076, node:internal/abort_controller:1:1,0x116d9d729970,~ +code-creation,JS,10,50625,0x116d9d72b99e,11, node:internal/abort_controller:378:1,0x116d9d72a428,~ +code-source-info,0x116d9d72b99e,89,10186,10842,C4O10212C10O10842,, +tick,0x19579ebd4,50667,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d727b64,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,50709,0x116d9d72cd3e,43,SafeFinalizationRegistry node:internal/per_context/primordials:440:16,0x1746951f4df0,~ +code-source-info,0x116d9d72cd3e,6,12756,12801,C3O12776C27O12776C42O12800,, +code-creation,JS,10,50792,0x116d9d72d386,155,defineEventHandler node:internal/event_target:1104:28,0x3f9e7a266a00,~ +code-source-info,0x116d9d72d386,47,29162,30601,C0O29162C24O29186C36O29280C41O29285C46O29434C56O29455C66O29509C77O29434C82O30371C92O30392C102O30446C113O30371C118O30467C125O30497C132O30534C138O30543C148O30467C154O30600,, +tick,0x19571ca54,51917,0,0x0,3,0x0,0x116d9d72b6a7,0x1067894b0,0x106789114,0x116d9d727b64,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,52042,0x116d9d73071e,5, node:internal/streams/end-of-stream:1:1,0x116d9d7303c8,~ +code-source-info,0x116d9d73071e,90,0,8360,C0O0C4O8360,, +code-creation,JS,10,52334,0x116d9d730a5e,353, node:internal/streams/end-of-stream:1:1,0x116d9d730698,~ +code-source-info,0x116d9d730a5e,90,0,8360,C0O0C120O172C126O172C131O147C137O161C142O210C148O234C154O309C160O309C165O283C171O299C177O427C183O427C188O345C194O368C200O388C206O406C212O470C218O481C224O505C230O833C236O833C241O548C247O560C253O574C259O598C265O618C271O640C277O661C283O675C289O699C295O719C301O741C307O762C313O793C319O811C325O872C326O872C328O1000C332O1000C334O8302C336O8317C340O8331C347O8348C352O8359,, +code-creation,Eval,10,52500,0x116d9d731f16,5, node:internal/streams/utils:1:1,0x116d9d731c90,~ +code-source-info,0x116d9d731f16,91,0,8416,C0O0C4O8416,, +code-creation,JS,10,52792,0x116d9d732bfe,460, node:internal/streams/utils:1:1,0x116d9d731e90,~ +code-source-info,0x116d9d732bfe,91,0,8416,C0O0C169O25C175O48C181O66C186O346C190O346C194O346C196O403C200O403C204O403C206O459C210O459C214O459C216O516C220O516C224O516C226O574C230O574C234O574C236O638C240O638C245O718C249O718C254O7817C262O7838C268O7853C274O7869C280O7884C286O7900C292O7913C298O7927C304O7941C310O7956C316O7976C322O8004C328O8019C334O8031C340O8053C346O8067C352O8081C358O8105C364O8125C370O8144C376O8166C382O8187C388O8203C394O8218C400O8232C406O8256C412O8276C418O8295C424O8317C430O8338C436O8357C442O8377C448O8394C454O7832C459O8415,, +code-creation,Eval,10,52959,0x116d9d734b66,5, node:internal/streams/compose:1:1,0x116d9d734940,~ +code-source-info,0x116d9d734b66,92,0,5451,C0O0C4O5451,, +code-creation,JS,10,53167,0x116d9d734d5e,184, node:internal/streams/compose:1:1,0x116d9d734ae0,~ +code-source-info,0x116d9d734d5e,92,0,5451,C0O0C47O36C50O36C55O23C61O89C64O89C68O89C70O147C73O147C78O133C84O316C87O316C92O194C98O210C104O224C110O238C116O253C122O274C128O294C134O442C137O442C142O361C148O382C153O388C159O415C165O482C168O482C172O482C174O526C178O541C183O5450,, +tick,0x19579ebd4,53167,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,53334,0x116d9d735ede,5, node:internal/streams/pipeline:1:1,0x116d9d735b28,~ +code-source-info,0x116d9d735ede,93,0,12326,C0O0C4O12326,, +code-creation,JS,10,53792,0x116d9d736456,421, node:internal/streams/pipeline:1:1,0x116d9d735e58,~ +code-source-info,0x116d9d736456,93,0,12326,C0O0C153O138C159O154C165O165C171O188C177O233C183O233C187O233C189O293C195O293C200O284C206O339C212O339C216O339C218O391C224O391C228O391C230O627C236O627C241O437C247O466C252O472C258O498C264O528C270O550C276O576C282O611C288O711C294O711C299O666C305O686C311O902C317O902C322O754C328O768C334O782C340O806C346O822C352O843C358O858C364O878C370O965C376O965C381O945C387O1008C388O1008C390O1025C391O1025C393O1039C394O1039C396O12281C403O12300C409O12314C415O12296C420O12325,, +code-creation,Eval,10,53917,0x116d9d737c56,5, node:internal/streams/destroy:1:1,0x116d9d7379c0,~ +code-source-info,0x116d9d737c56,94,0,6826,C0O0C4O6826,, +code-creation,JS,10,54209,0x116d9d73837e,251, node:internal/streams/destroy:1:1,0x116d9d737bd0,~ +code-source-info,0x116d9d73837e,94,0,6826,C0O0C122O106C125O106C130O25C136O54C141O60C147O90C153O144C158O245C161O245C166O179C172O195C178O210C184O224C190O298C193O298C197O298C199O337C202O337C206O337C208O6736C215O6757C221O6770C227O6783C233O6794C239O6807C245O6751C250O6825,, +code-creation,Eval,10,54334,0x116d9d73985e,5, node:internal/streams/duplex:1:1,0x116d9d7396a8,~ +code-source-info,0x116d9d73985e,95,0,4938,C0O0C4O4938,, +code-creation,JS,10,54542,0x116d9d739ed6,604, node:internal/streams/duplex:1:1,0x116d9d7397d8,~ +code-source-info,0x116d9d739ed6,95,0,4938,C0O0C33O1383C38O1409C43O1443C48O1457C53O1497C55O1512C59O1540C65O1540C69O1540C71O1595C77O1595C81O1595C83O1634C86O1662C94O1682C99O1634C104O1694C110O1694C115O1752C118O1772C123O1752C128O1838C130O1850C134O1843C139O1884C141O1888C145O1897C148O1909C155O1918C160O1934C163O1941C171O1970C178O1979C181O1959C185O1859C190O1825C194O2665C197O2695C207O2724C215O2786C224O2746C243O2841C251O2903C260O2863C279O2968C287O3030C296O2990C315O3088C323O3150C332O3110C351O3204C359O3266C368O3226C387O3322C395O3384C404O3344C423O3440C431O3502C440O3462C459O3555C467O3617C476O3577C495O3673C503O3735C512O3695C531O3784C536O3811C544O4029C558O2665C563O4306C564O4306C566O4530C573O4545C577O4668C584O4681C588O4779C589O4779C591O4791C598O4803C603O4937,, +tick,0x1956951d0,54584,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +new,MemoryChunk,0x32e0259c0000,262144 +code-creation,Eval,10,55084,0x116d9d73ceae,5, node:internal/streams/readable:1:1,0x116d9d73ba48,~ +code-source-info,0x116d9d73ceae,96,0,49050,C0O0C4O49050,, +tick,0x1957d9508,56834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d739f17,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +tick,0x1957a1074,56834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d739f17,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,56834,0x32e0259c1896,2441, node:internal/streams/readable:1:1,0x116d9d73ce28,~ +code-creation,Eval,10,57167,0x32e0259c68e6,5, node:internal/streams/legacy:1:1,0x32e0259c6770,~ +code-source-info,0x32e0259c68e6,97,0,2934,C0O0C4O2934,, +code-creation,JS,10,57292,0x32e0259c6b6e,106, node:internal/streams/legacy:1:1,0x32e0259c6860,~ +code-source-info,0x32e0259c6b6e,97,0,2934,C0O0C22O25C28O41C33O92C36O92C40O92C42O189C50O203C55O161C60O215C63O215C68O257C77O272C81O2888C88O2907C94O2915C100O2903C105O2933,, +code-creation,Eval,10,57375,0x32e0259c754e,5, node:internal/streams/add-abort-signal:1:1,0x32e0259c7358,~ +code-source-info,0x32e0259c754e,98,0,1704,C0O0C4O1704,, +code-creation,JS,10,57459,0x32e0259c77be,158, node:internal/streams/add-abort-signal:1:1,0x32e0259c74c8,~ +code-source-info,0x32e0259c77be,98,0,1704,C0O0C40O25C46O93C52O93C57O68C63O82C68O193C74O193C79O132C85O148C91O163C97O241C103O241C107O241C109O292C115O328C116O328C118O557C122O557C124O719C127O726C136O749C140O1065C143O1072C152O1105C157O1703,, +code-creation,Eval,10,57542,0x32e0259c802e,5, node:internal/streams/buffer_list:1:1,0x32e0259c7e98,~ +code-source-info,0x32e0259c802e,99,0,4060,C0O0C4O4060,, +code-creation,JS,10,57709,0x32e0259c8b1e,175, node:internal/streams/buffer_list:1:1,0x32e0259c7fa8,~ +code-source-info,0x32e0259c8b1e,99,0,4060,C0O0C20O25C26O49C31O67C37O93C43O142C46O142C51O131C57O181C60O181C65O169C71O216C120O2055C143O3869C147O3869C169O231C174O4059,, +code-creation,Eval,10,57792,0x32e0259c980e,5, node:internal/streams/state:1:1,0x32e0259c9648,~ +code-source-info,0x32e0259c980e,100,0,1332,C0O0C4O1332,, +code-creation,JS,10,57834,0x32e0259c9a96,131, node:internal/streams/state:1:1,0x32e0259c9788,~ +code-source-info,0x32e0259c9a96,100,0,1332,C0O0C45O25C51O38C57O100C60O100C65O80C71O167C74O167C79O193C84O141C90O234C94O234C96O282C98O282C100O1236C107O1257C113O1277C119O1304C125O1251C130O1331,, +code-creation,Eval,10,57917,0x32e0259ca2de,5, node:string_decoder:1:1,0x32e0259ca068,~ +code-source-info,0x32e0259ca2de,101,0,5213,C0O0C4O5213,, +code-creation,JS,10,58125,0x32e0259ca86e,388, node:string_decoder:1:1,0x32e0259ca258,~ +code-source-info,0x32e0259ca86e,101,0,5213,C0O0C70O1159C76O1180C81O1206C86O1216C92O1282C95O1282C100O1271C106O1465C109O1465C114O1311C120O1341C126O1369C132O1386C138O1404C144O1422C150O1431C156O1441C162O1450C167O1521C170O1521C174O1521C176O1627C179O1627C184O1653C189O1557C195O1581C201O1601C207O1680C213O1700C217O1686C220O1680C222O1744C225O1744C229O1744C231O2414C232O2414C234O2431C236O2448C240O2436C245O2463C250O2485C256O2490C260O2458C265O2418C269O3209C278O3225C282O3873C291O3887C295O4274C304O4289C308O4488C318O4513C323O4586C337O4818C342O4891C356O4974C361O5047C375O4451C380O5174C382O5196C387O5212,, +tick,0x19580f36c,58167,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x32e0259c1b64,0x1067894b0,0x106789114,0x116d9d739f17,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,58250,0x32e0259cbd8e,5, node:internal/streams/from:1:1,0x32e0259cbbd8,~ +code-source-info,0x32e0259cbd8e,102,0,2614,C0O0C4O2614,, +code-creation,JS,10,58375,0x32e0259cbef6,97, node:internal/streams/from:1:1,0x32e0259cbd08,~ +code-source-info,0x32e0259cbef6,102,0,2614,C0O0C32O25C38O49C44O72C50O124C53O124C58O113C64O206C67O206C72O232C77O154C83O178C89O2591C91O2606C96O2613,, +code-creation,JS,10,58459,0x32e0259cce66,33,makeBitMapDescriptor node:internal/streams/readable:120:30,0x116d9d73cee0,~ +code-source-info,0x32e0259cce66,96,3765,3958,C0O3765C9O3775C14O3811C22O3861C32O3956,, +code-creation,Eval,10,58917,0x32e0259d2b1e,5, node:internal/streams/writable:1:1,0x32e0259d1f18,~ +code-source-info,0x32e0259d2b1e,103,0,33751,C0O0C4O33751,, +code-creation,JS,10,60084,0x32e0259d4f2e,2010, node:internal/streams/writable:1:1,0x32e0259d2a98,~ +tick,0x1957d9a34,60209,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d739f23,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,60292,0x32e0259d91d6,33,makeBitMapDescriptor node:internal/streams/writable:116:30,0x32e0259d2ba0,~ +code-source-info,0x32e0259d91d6,103,3773,3966,C0O3773C9O3783C14O3819C22O3869C32O3964,, +code-creation,Eval,10,60459,0x32e0259dd4ce,5, node:stream/promises:1:1,0x32e0259dd328,~ +code-source-info,0x32e0259dd4ce,104,0,917,C0O0C4O917,, +code-creation,JS,10,60500,0x32e0259dd64e,125, node:stream/promises:1:1,0x32e0259dd448,~ +code-source-info,0x32e0259dd64e,104,0,917,C0O0C28O25C34O46C40O130C43O130C48O83C54O97C60O113C66O195C69O195C74O188C80O254C83O254C88O241C93O298C96O298C100O871C107O892C113O904C119O886C124O916,, +code-creation,Eval,10,60625,0x32e0259de286,5, node:internal/streams/transform:1:1,0x32e0259de0c0,~ +code-source-info,0x32e0259de286,105,0,7368,C0O0C4O7368,, +code-creation,JS,10,60875,0x32e0259de63e,202, node:internal/streams/transform:1:1,0x32e0259de200,~ +code-source-info,0x32e0259de63e,105,0,7368,C0O0C39O3508C44O3532C49O3558C51O3573C55O3628C58O3628C63O3654C68O3596C74O3677C77O3677C81O3677C83O3742C86O3742C91O3721C97O3777C100O3808C108O3826C113O3777C118O3838C124O3838C129O3898C132O3898C136O3898C138O6278C141O6288C148O6305C152O6315C155O6325C164O6346C168O6446C171O6456C180O6473C184O7213C187O7223C196O7239C201O7367,, +tick,0x19571ca90,60917,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d725e90,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,60959,0x32e0259df3be,5, node:internal/streams/passthrough:1:1,0x32e0259df258,~ +code-source-info,0x32e0259df3be,106,0,1762,C0O0C4O1762,, +code-creation,JS,10,61000,0x32e0259df556,84, node:internal/streams/passthrough:1:1,0x32e0259df338,~ +code-source-info,0x32e0259df556,106,0,1762,C0O0C14O1288C19O1328C21O1343C25O1377C28O1377C32O1377C34O1416C37O1449C45O1470C50O1416C55O1482C61O1482C66O1673C69O1685C78O1706C83O1761,, +code-creation,Eval,10,61292,0x32e0259e419e,5, node:internal/stream_base_commons:1:1,0x32e0259e3e68,~ +code-source-info,0x32e0259e419e,107,0,7041,C0O0C4O7041,, +code-creation,JS,10,61542,0x32e0259e4786,514, node:internal/stream_base_commons:1:1,0x32e0259e4118,~ +code-source-info,0x32e0259e4786,107,0,7041,C0O0C130O25C136O34C141O79C144O79C149O68C155O121C158O121C163O106C169O275C172O275C177O159C183O172C189O193C195O215C201O232C207O254C213O326C216O326C221O315C227O379C230O379C235O359C241O432C244O432C249O463C254O415C260O536C263O536C268O483C274O495C280O514C286O589C289O589C294O572C300O646C303O646C308O629C314O694C317O694C322O673C328O749C331O749C335O749C337O795C340O795C344O795C346O844C349O844C353O844C355O888C358O888C362O888C364O924C367O924C371O924C373O957C376O957C381O990C394O991C400O957C402O1054C405O1054C409O1054C411O1092C414O1092C418O1092C420O1132C423O1132C427O1132C429O6836C436O6857C442O6874C448O6890C454O6906C460O6926C466O6943C472O6959C478O6970C484O6982C490O7002C496O7013C502O7026C508O6851C513O7040,, +code-creation,Eval,10,61750,0x32e0259e643e,5, node:diagnostics_channel:1:1,0x32e0259e6018,~ +code-source-info,0x32e0259e643e,108,0,9791,C0O0C4O9791,, +code-creation,JS,10,62125,0x32e0259e7dce,616, node:diagnostics_channel:1:1,0x32e0259e63b8,~ +code-source-info,0x32e0259e7dce,108,0,9791,C0O0C131O25C137O45C143O70C149O92C155O116C161O144C167O168C173O192C179O203C185O227C191O245C197O262C203O278C209O289C214O380C217O380C222O343C227O349C233O440C236O440C241O418C247O510C250O510C255O481C261O564C264O564C269O546C297O759C354O734C409O2160C427O3888C503O3717C505O4516C507O4516C512O4516C514O5148C518O5148C565O5359C567O9683C574O9704C580O9715C586O9733C592O9746C598O9764C604O9779C610O9698C615O9790,, +code-creation,JS,10,62167,0x32e0259e81ae,40, node:diagnostics_channel:35:1,0x32e0259e6920,~ +code-source-info,0x32e0259e81ae,108,734,1143,C0O734C14O785C28O785C39O1143,, +tick,0x100c25398,62209,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d71e6ae,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,62250,0x32e0259e980e,52,WeakRefMap node:diagnostics_channel:35:1,0x32e0259e6790,~ +code-source-info,0x32e0259e980e,108,734,734,C0O734C5O734C29O734C51O734,, +code-creation,JS,10,62292,0x32e0259eaaf6,70,channel node:diagnostics_channel:213:17,0x32e0259e65b0,~ +code-source-info,0x32e0259eaaf6,108,4551,4801,C0O4578C5O4587C10O4587C16O4600C18O4613C20O4628C21O4632C33O4696C51O4702C56O4696C57O4774C64O4781C69O4799,, +code-creation,JS,10,62334,0x32e0259eac26,34,get node:diagnostics_channel:45:6,0x32e0259e6830,~ +code-source-info,0x32e0259eac26,108,980,1025,C0O992C2O1005C13O1005C21O1013C26O1015C33O1021,, +code-creation,JS,10,62334,0x32e0259ead76,36,Channel node:diagnostics_channel:168:14,0x32e0259e6c00,~ +code-source-info,0x32e0259ead76,108,3746,3876,C0O3759C1O3777C5O3794C6O3807C10O3824C12O3834C16O3847C23O3856C28O3856C35O3875,, +code-creation,JS,10,62375,0x32e0259eaff6,51,set node:diagnostics_channel:40:6,0x32e0259e67e0,~ +code-source-info,0x32e0259eaff6,108,859,973,C0O878C2O883C6O895C11O895C17O921C19O934C28O947C33O943C45O934C50O969,, +code-creation,JS,10,62375,0x32e0259eb15e,37,WeakReference node:internal/util:835:14,0x3f9e7a244270,~ +code-source-info,0x32e0259eb15e,16,22980,23036,C0O22980C14O22995C21O23012C26O23008C31O23006C36O23035,, +code-creation,JS,10,62375,0x32e0259eb3ae,43,SafeWeakRef node:internal/per_context/primordials:447:16,0x1746951f4e40,~ +code-source-info,0x32e0259eb3ae,6,12965,12992,C3O12976C27O12976C42O12991,, +code-creation,Eval,10,62625,0x32e0259ec76e,5, node:internal/perf/observe:1:1,0x32e0259ec100,~ +code-source-info,0x32e0259ec76e,109,0,16722,C0O0C4O16722,, +code-creation,JS,10,63250,0x32e0259ede7e,1209, node:internal/perf/observe:1:1,0x32e0259ec6e8,~ +code-creation,JS,10,63292,0x32e0259ee5ae,50, node:internal/perf/observe:243:1,0x32e0259ed0d8,~ +code-source-info,0x32e0259ee5ae,109,5936,9533,C3O5976C13O5996C20O5996C34O6013C43O6022C49O9533,, +tick,0x101f1e490,63334,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d71e6dd,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,63459,0x32e0259f022e,5, node:internal/perf/performance_entry:1:1,0x32e0259f0038,~ +code-source-info,0x32e0259f022e,110,0,3272,C0O0C4O3272,, +code-creation,JS,10,63584,0x32e0259f0efe,370, node:internal/perf/performance_entry:1:1,0x32e0259f01a8,~ +code-source-info,0x32e0259f0efe,110,0,3272,C0O0C53O25C58O51C63O134C66O134C71O94C76O100C82O231C85O231C90O194C95O206C100O291C103O291C108O265C114O344C117O344C122O332C128O376C131O376C135O376C137O428C140O428C144O428C146O485C149O485C153O485C155O541C158O541C162O541C164O594C167O594C171O594C173O652C176O652C180O652C211O1595C238O750C240O2067C243O2107C255O2128C261O2162C267O2196C273O2229C279O2260C283O2067C291O2518C319O2483C321O3114C328O3135C334O3161C340O3181C346O3203C352O3227C358O3257C364O3129C369O3271,, +code-creation,JS,10,63750,0x32e0259f2e06,34,protoGetter node:net:866:21,0x116d9d71af88,~ +code-source-info,0x32e0259f2e06,86,22667,22829,C0O22688C8O22716C13O22727C20O22812C27O22688C33O22828,, +code-creation,JS,11,63792,0x10678b520,312,protoGetter node:net:866:21,0x116d9d71af88,^ +code-source-info,0x10678b520,86,22667,22829,,, +code-creation,JS,11,63834,0x10678b680,1760,Module._nodeModulePaths node:internal/modules/cjs/loader:793:37,0x3f9e7a276950,^ +code-source-info,0x10678b680,63,24237,25417,,, +code-creation,JS,11,63834,0x10678bd80,64,toNamespacedPath node:path:1269:19,0x3f9e7a25b230,^ +code-source-info,0x10678bd80,34,38744,38804,,, +code-creation,JS,11,63834,0x10678bde0,208,nextPart node:fs:2600:31,0x3f9e7a26d460,^ +code-source-info,0x10678bde0,55,68560,68618,,, +code-creation,JS,11,63875,0x10678bec0,368,isFileType node:fs:206:20,0x3f9e7a26b5b8,^ +code-source-info,0x10678bec0,55,5086,5327,,, +code-creation,JS,11,63875,0x10678c040,1568,dirname node:path:1278:10,0x3f9e7a25b280,^ +code-source-info,0x10678c040,34,38877,39546,,, +code-creation,JS,11,63917,0x10678c680,336,validateString node:internal/validators:160:24,0x1746951ff078,^ +code-source-info,0x10678c680,15,4120,4229,,, +code-creation,JS,11,63917,0x10678c7e0,328,makeBitMapDescriptor node:internal/streams/readable:120:30,0x116d9d73cee0,^ +code-source-info,0x10678c7e0,96,3765,3958,,, +code-creation,JS,11,63959,0x10678c940,328,makeBitMapDescriptor node:internal/streams/writable:116:30,0x32e0259d2ba0,^ +code-source-info,0x10678c940,103,3773,3966,,, +code-creation,JS,11,63959,0x10678caa0,1056,getDeprecationWarningEmitter node:internal/util:111:38,0x3f9e7a241d30,^ +code-source-info,0x10678caa0,16,2733,3345,,, +code-creation,Eval,10,64334,0x32e0259f9e8e,5, node:dgram:1:1,0x32e0259f98e8,~ +code-source-info,0x32e0259f9e8e,111,0,28253,C0O0C4O28253,, +code-creation,JS,10,65292,0x32e0259fbff6,1627, node:dgram:1:1,0x32e0259f9e08,~ +tick,0x1957d9920,65417,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d7148d8,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,65500,0x32e0259ff676,5, node:internal/dgram:1:1,0x32e0259ff470,~ +code-source-info,0x32e0259ff676,112,0,1851,C0O0C4O1851,, +code-creation,JS,10,65584,0x32e0259ff93e,199, node:internal/dgram:1:1,0x32e0259ff5f0,~ +code-source-info,0x32e0259ff93e,112,0,1851,C0O0C56O25C62O50C67O94C73O94C78O84C83O138C86O138C91O130C97O195C103O195C108O175C114O264C120O264C125O231C131O242C137O318C140O318C145O304C151O351C157O404C160O404C165O432C166O432C168O1777C175O1798C181O1814C187O1837C193O1792C198O1850,, +tick,0x100a951f0,65625,1,0x1009f5df0,6,0x0,0x1067898a4,0x32e0259ff994,0x1067894b0,0x106789114,0x32e0259fc15d,0x1067894b0,0x106789114,0x116d9d7148d8,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +new,MemoryChunk,0x113956500000,262144 +code-creation,Eval,10,65792,0x11395650574e,5, node:internal/socket_list:1:1,0x1139565055f8,~ +code-source-info,0x11395650574e,113,0,2709,C0O0C4O2709,, +code-creation,JS,10,65875,0x113956505d8e,124, node:internal/socket_list:1:1,0x1139565056c8,~ +code-source-info,0x113956505d8e,113,0,2709,C0O0C8O57C11O57C16O83C21O23C27O113C30O113C35O218C72O1527C99O2653C106O2672C112O2688C118O2668C123O2708,, +code-creation,JS,10,65959,0x11395650709e,14,customPromiseExecFunction node:child_process:239:35,0x116d9d70c770,~ +code-source-info,0x11395650709e,84,6932,7296,C0O6932C9O6946C13O7294,, +code-creation,Eval,10,66042,0x113956509cfe,5, node:internal/cluster/round_robin_handle:1:1,0x113956509af8,~ +code-source-info,0x113956509cfe,114,0,3453,C0O0C4O3453,, +code-creation,JS,10,66167,0x11395650a0be,208, node:internal/cluster/round_robin_handle:1:1,0x113956509c78,~ +code-source-info,0x11395650a0be,114,0,3453,C0O0C46O25C52O41C58O52C64O94C67O94C71O94C73O134C76O134C80O134C82O173C85O173C90O158C96O256C99O256C104O216C110O224C116O230C122O239C128O245C134O310C137O310C142O296C148O340C150O355C154O1336C163O1350C167O2001C176O2018C180O2399C189O2420C193O2862C202O2880C207O3452,, +code-creation,Eval,10,66250,0x11395650aa26,5, node:internal/cluster/utils:1:1,0x11395650a8b0,~ +code-source-info,0x11395650aa26,115,0,1054,C0O0C4O1054,, +code-creation,JS,10,66292,0x11395650abe6,72, node:internal/cluster/utils:1:1,0x11395650a9a0,~ +code-source-info,0x11395650abe6,115,0,1054,C0O0C24O25C30O41C35O68C42O89C48O103C54O83C58O135C60O135C65O135C67O160C68O160C71O1053,, +code-creation,Eval,10,66375,0x11395650b2e6,5, node:internal/cluster/shared_handle:1:1,0x11395650b160,~ +code-source-info,0x11395650b2e6,116,0,1102,C0O0C4O1102,, +code-creation,JS,10,66417,0x11395650b51e,89, node:internal/cluster/shared_handle:1:1,0x11395650b260,~ +code-source-info,0x11395650b51e,116,0,1102,C0O0C22O22C28O62C31O62C35O62C37O104C40O104C44O104C46O143C49O143C53O143C55O160C57O175C61O685C70O699C74O861C83O878C88O1101,, +code-creation,Eval,10,66459,0x11395650bb76,5, node:internal/cluster/worker:1:1,0x11395650b9f0,~ +code-source-info,0x11395650bb76,117,0,1379,C0O0C4O1379,, +code-creation,JS,10,66542,0x11395650beee,158, node:internal/cluster/worker:1:1,0x11395650baf0,~ +code-source-info,0x11395650beee,117,0,1379,C0O0C20O25C25O49C31O102C34O102C38O102C40O147C43O147C48O130C54O174C56O189C60O876C63O904C71O928C76O876C81O940C87O940C92O985C95O992C104O1007C108O1073C111O1080C120O1095C124O1181C127O1188C136O1205C140O1299C143O1306C152O1328C157O1378,, +code-creation,JS,10,66625,0x11395650cf46,170,getESMFacade node:internal/bootstrap/realm:340:15,0x1746951f6b98,~ +code-source-info,0x11395650cf46,9,10834,11584,C0O10834C8O10852C14O10872C18O10879C19O10907C29O10907C34O10892C39O11025C46O11057C53O11025C58O11091C61O11104C70O11130C72O11130C74O11160C81O11185C86O11160C91O11202C101O11202C106O11250C108O11302C121O11264C126O11262C130O11498C135O11505C140O11505C144O11529C149O11536C159O11536C165O11573C169O11580,, +code-creation,JS,10,66667,0x11395650d47e,40, node:internal/bootstrap/realm:351:15,0x11395650ce30,~ +code-source-info,0x11395650d47e,9,11329,11424,C0O11342C5O11350C10O11350C14O11378C24O11399C27O11407C32O11378C39O11423,, +code-creation,JS,10,66667,0x11395650d5ee,90,syncExports node:internal/bootstrap/realm:365:14,0x1746951f6c10,~ +code-source-info,0x11395650d5ee,9,11891,12224,C0O11919C5O11944C11O11973C13O11986C17O11978C22O12028C24O12033C28O12046C30O12061C35O12076C37O12099C42O12106C51O12158C54O12170C59O12196C67O12158C73O12106C79O11995C84O11960C89O12223,, +code-creation,JS,10,66709,0x11395650d786,35,getOwn node:internal/bootstrap/realm:202:16,0x1746951f6648,~ +code-source-info,0x11395650d786,9,6377,6531,C0O6413C5O6420C14O6474C26O6474C34O6529,, +code-creation,JS,10,66750,0x11395650daae,16, node:internal/modules/cjs/loader:122:3,0x3f9e7a275f60,~ +code-source-info,0x11395650daae,63,3697,3751,C0O3741C6O3703C11O3741C15O3751,, +code-creation,Eval,10,66792,0x11395650de9e,5, node:internal/process/esm_loader:1:1,0x11395650dcc8,~ +code-source-info,0x11395650de9e,118,0,1190,C0O0C4O1190,, +code-creation,JS,10,66875,0x11395650e096,146, node:internal/process/esm_loader:1:1,0x11395650de18,~ +code-source-info,0x11395650e096,118,0,1190,C0O0C34O25C40O100C43O100C48O77C54O167C57O167C62O148C68O247C71O247C76O206C82O322C85O322C90O294C96O308C102O353C103O353C105O365C110O462C140O380C145O1189,, +tick,0x195679d3c,66917,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x11395650dab4,0x9d6055de01b,0x9d6055f565e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,67084,0x11395650f16e,5, node:internal/modules/esm/loader:1:1,0x11395650ed10,~ +code-source-info,0x11395650f16e,119,0,22028,C0O0C4O22028,, +code-creation,JS,10,67834,0x11395651030e,597, node:internal/modules/esm/loader:1:1,0x11395650f0e8,~ +code-source-info,0x11395651030e,119,0,22028,C0O0C123O79C129O79C133O130C139O152C145O173C151O197C157O222C163O239C168O263C174O295C180O310C186O332C192O424C198O424C203O450C208O374C214O393C220O485C226O485C231O466C237O547C243O547C248O522C254O537C260O608C266O608C271O580C277O670C283O670C288O644C294O713C295O713C297O729C298O729C300O742C301O742C303O759C304O759C306O1876C307O1876C481O2304C483O15240C486O15274C493O15240C561O15293C563O17836C564O17836C566O21955C573O21976C579O21998C585O22015C591O21970C596O22027,, +code-creation,JS,10,67875,0x11395651068e,7, node:internal/modules/esm/loader:456:1,0x11395650fb88,~ +code-source-info,0x11395651068e,119,15293,17803,C0O15352C6O17803,, +code-creation,JS,10,67875,0x11395651074e,95, node:internal/modules/esm/loader:83:1,0x11395650f8d0,~ +code-source-info,0x11395651074e,119,2304,15239,C3O2434C10O2434C18O2530C25O2530C34O2648C42O2719C47O2719C55O2822C60O2822C67O2944C72O2944C80O3172C88O3551C94O15239,, +code-creation,JS,10,67959,0x11395651252e,29,get esmLoader node:internal/process/esm_loader:17:16,0x11395650df40,~ +code-source-info,0x11395651252e,118,399,458,C0O408C10O429C15O429C22O425C28O454,, +code-creation,JS,10,68000,0x113956512a9e,193,createModuleLoader node:internal/modules/esm/loader:530:28,0x11395650f290,~ +code-source-info,0x113956512a9e,119,18326,19981,C10O18386C12O18394C22O18601C27O18638C32O18639C38O18687C46O18687C51O18752C57O18759C62O18772C75O18839C79O18839C81O19344C86O19352C101O19587C108O19619C111O19637C116O19619C125O19587C140O19459C147O19352C153O19832C159O19857C169O19879C174O19896C180O19939C187O19946C192O19979,, +code-creation,JS,10,68042,0x113956514076,5,isLoaderWorker node:internal/modules/esm/utils:205:24,0x3f9e7a2787c0,~ +code-source-info,0x113956514076,66,6908,6940,C0O6915C4O6938,, +code-creation,JS,10,68042,0x1139565141ae,66,ModuleLoader node:internal/modules/esm/loader:132:14,0x11395650f3d0,~ +code-source-info,0x1139565141ae,119,3582,3764,C5O3582C24O3605C34O3609C40O3667C50O3667C54O3726C59O3726C65O3763,, +code-creation,JS,10,68084,0x1139565143b6,21,getDefaultConditions node:internal/modules/esm/utils:41:30,0x3f9e7a278358,~ +code-source-info,0x1139565143b6,66,955,1032,C0O962C7O969C10O987C12O962C16O1005C20O1030,, +code-creation,JS,10,68084,0x11395651467e,22,newResolveCache node:internal/modules/esm/loader:35:25,0x11395650f1a0,~ +code-source-info,0x11395651467e,119,950,1056,C0O982C6O982C11O965C16O1035C21O1054,, +tick,0x100bed558,68125,1,0x100a09554,2,0x0,0x1067893e4,0x106789114,0x113956514684,0x11395651077d,0x1139565141bf,0x113956512b59,0x11395651253d,0x11395650dab9,0x9d6055de01b,0x9d6055f565e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,68167,0x113956514bd6,5, node:internal/modules/esm/module_map:1:1,0x113956514920,~ +code-source-info,0x113956514bd6,120,0,3877,C0O0C4O3877,, +code-creation,JS,10,68334,0x11395651542e,299, node:internal/modules/esm/module_map:1:1,0x113956514b50,~ +code-source-info,0x11395651542e,120,0,3877,C0O0C36O25C42O47C48O68C54O90C60O107C66O121C71O179C77O179C82O155C88O231C94O231C99O264C112O265C118O231C120O342C126O342C131O368C136O317C142O403C148O403C153O384C179O838C227O811C231O2832C274O3826C281O3847C287O3860C293O3841C298O3876,, +code-creation,Eval,10,68417,0x113956515f26,5, node:internal/modules/esm/assert:1:1,0x113956515d20,~ +code-source-info,0x113956515f26,121,0,3876,C0O0C4O3876,, +code-creation,JS,10,68542,0x113956516206,210, node:internal/modules/esm/assert:1:1,0x113956515ea0,~ +code-source-info,0x113956516206,121,0,3876,C0O0C49O25C54O49C60O75C66O89C71O105C77O180C80O180C85O161C91O375C94O375C99O401C104O223C110O259C116O296C122O337C128O502C130O502C132O692C139O728C145O763C151O814C157O845C163O692C165O1271C168O1295C178O1271C183O1271C185O3809C192O3830C198O3853C204O3824C209O3875,, +code-creation,JS,10,68625,0x113956516856,9, node:internal/modules/esm/assert:44:3,0x113956515ff8,~ +code-source-info,0x113956516856,121,1326,1364,C0O1341C2O1345C4O1341C8O1364,, +code-creation,JS,10,68625,0x11395651721e,53,ResolveCache node:internal/modules/esm/module_map:26:14,0x113956514ca8,~ +code-source-info,0x11395651721e,120,861,878,C3O867C27O867C52O877,, +code-creation,JS,10,68667,0x11395651783e,22,newLoadCache node:internal/modules/esm/loader:44:22,0x11395650f1f0,~ +code-source-info,0x11395651783e,119,1233,1333,C0O1262C6O1262C11O1248C16O1315C21O1331,, +code-creation,JS,10,68667,0x113956517916,43,LoadCache node:internal/modules/esm/module_map:90:14,0x113956514e38,~ +code-source-info,0x113956517916,120,2855,2872,C3O2861C27O2861C42O2871,, +code-creation,JS,10,68709,0x113956517afe,17,getTranslators node:internal/modules/esm/loader:53:24,0x11395650f240,~ +code-source-info,0x113956517afe,119,1518,1617,C0O1549C6O1549C11O1533C16O1615,, +code-creation,Eval,10,68875,0x11395651867e,5, node:internal/modules/esm/translators:1:1,0x1139565181a8,~ +code-source-info,0x11395651867e,122,0,19320,C0O0C4O19320,, +code-creation,JS,10,69584,0x113956518f96,796, node:internal/modules/esm/translators:1:1,0x1139565185f8,~ +code-source-info,0x113956518f96,122,0,19320,C0O0C208O25C214O46C220O57C226O70C232O94C238O127C244O141C250O157C256O178C261O189C267O200C273O227C279O256C285O280C291O309C297O319C303O355C308O357C314O448C315O448C317O673C320O673C325O648C331O719C337O719C341O719C343O772C349O772C354O755C360O828C366O828C371O795C377O804C383O813C389O890C395O890C400O855C406O876C412O977C418O977C423O945C429O958C435O1063C441O1063C446O1025C452O1040C458O1055C464O1100C470O1100C475O1133C488O1134C494O1100C496O1244C502O1244C507O1186C513O1211C519O1225C525O1349C531O1349C536O1375C541O1280C547O1310C553O1415C559O1415C564O1391C570O1483C573O1483C578O1523C584O1567C590O1567C594O1567C596O1635C602O1635C607O1615C613O1708C619O1708C624O1680C630O1799C631O1799C633O2447C635O2447C641O2462C643O2482C647O2497C649O2520C653O2553C654O2553C656O4909C669O4909C675O9562C677O9562C682O9562C684O11512C697O11512C703O11800C716O11800C722O15500C735O15500C741O15979C744O15987C751O15996C754O15979C756O16021C769O16021C775O18361C788O18361C795O19319,, +tick,0x19579ebd4,69625,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x113956517b04,0x113956510796,0x1139565141bf,0x113956512b59,0x11395651253d,0x11395650dab9,0x9d6055de01b,0x9d6055f565e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,69667,0x11395651a9b6,30,setCustomizations node:internal/modules/esm/loader:187:20,0x11395650f420,~ +code-source-info,0x11395651a9b6,119,5321,5548,C0O5344C5O5365C9O5387C13O5460C17O5443C23O5503C24O5531C29O5547,, +code-creation,Eval,10,70000,0x11395651ae0e,5, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1,0x11395651ac68,~ +script-source,123,/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js,'use strict'\nconst net = require('net')\n\nlet isWorker = false\ntry {\n // Skip redirecting stdout in Worker threads.\n isWorker = !require('worker_threads').isMainThread\n} catch (e) {}\n\nif (!isWorker) {\n const socket = new net.Socket({\n fd: 3\x2C\n readable: false\x2C\n writable: true\n })\n Object.defineProperty(process\x2C 'stdout'\x2C {\n configurable: true\x2C\n enumerable: true\x2C\n get: () => socket\n })\n Object.defineProperty(process.stdout\x2C 'fd'\x2C {\n value: socket._handle.fd\n })\n}\n +code-source-info,0x11395651ae0e,123,0,494,C0O0C4O494,, +code-creation,JS,10,70042,0x11395651b0b6,157, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1,0x11395651ad88,~ +code-source-info,0x11395651b0b6,123,0,494,C0O25C3O25C8O56C13O118C16O130C21O155C30O127C42O185C53O227C65O219C70O219C72O294C76O301C81O316C93O392C101O301C106O412C110O419C115O434C119O442C135O476C140O484C148O419C156O493,, +code-creation,JS,10,70084,0x11395651b6ce,37,get BlockList node:net:2373:16,0x116d9d71d3b8,~ +code-source-info,0x11395651b6ce,86,65392,65481,C0O65401C14O65415C19O65444C26O65411C32O65460C36O65477,, +code-creation,Eval,10,70167,0x11395651bbce,5, node:internal/blocklist:1:1,0x11395651b9e8,~ +code-source-info,0x11395651bbce,124,0,3880,C0O0C4O3880,, +code-creation,JS,10,70292,0x11395651c5de,357, node:internal/blocklist:1:1,0x11395651bb48,~ +code-source-info,0x11395651c5de,124,0,3880,C0O0C35O25C41O36C46O60C51O128C54O128C59O107C65O205C68O205C73O191C78O294C81O294C86O242C92O268C98O386C101O386C106O340C111O358C116O368C121O451C124O451C129O439C135O502C138O502C142O502C144O546C147O546C152O529C158O612C161O612C166O638C171O585C177O689C180O689C185O655C191O670C197O746C204O885C241O3226C251O3387C277O3522C299O3694C304O3728C309O3738C313O3716C317O3790C322O3811C327O3751C332O3824C339O3845C345O3858C351O3839C356O3879,, +code-creation,Eval,10,70417,0x11395651e116,5, node:internal/socketaddress:1:1,0x11395651df10,~ +code-source-info,0x11395651e116,125,0,3388,C0O0C4O3388,, +code-creation,JS,10,70542,0x11395651ec4e,373, node:internal/socketaddress:1:1,0x11395651e090,~ +code-source-info,0x11395651ec4e,125,0,3388,C0O0C41O25C46O49C51O143C54O143C59O100C65O118C71O129C77O257C80O257C85O185C91O203C97O221C103O237C109O345C112O345C117O307C122O313C128O435C131O435C136O405C141O417C147O482C150O482C155O470C161O573C164O573C169O527C174O545C179O555C184O634C187O634C191O634C193O669C196O669C200O669C202O717C235O2097C245O2340C255O2509C287O2904C309O3169C314O3209C319O3219C323O3191C327O3275C332O3300C337O3232C342O3313C349O3334C355O3351C361O3376C367O3328C372O3387,, +code-creation,JS,10,70625,0x11395651fece,37,get SocketAddress node:net:2377:20,0x116d9d71d430,~ +code-source-info,0x11395651fece,86,65502,65607,C0O65511C14O65529C19O65562C26O65525C32O65582C36O65603,, +tick,0x1014ddc00,70667,0,0x0,0,0x1014feb48,0x11395650d7a0,0x11395650d631,0x11395650d488,0x1009e90b8,0x11395650cfe5,0x9d6055ff465,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x11395651b0b9,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,70709,0x1139565202b6,5, node:worker_threads:1:1,0x113956520170,~ +script-source,126,node:worker_threads,'use strict';\n\nconst {\n isMainThread\x2C\n SHARE_ENV\x2C\n resourceLimits\x2C\n setEnvironmentData\x2C\n getEnvironmentData\x2C\n threadId\x2C\n Worker\x2C\n} = require('internal/worker');\n\nconst {\n MessagePort\x2C\n MessageChannel\x2C\n moveMessagePortToContext\x2C\n receiveMessageOnPort\x2C\n BroadcastChannel\x2C\n} = require('internal/worker/io');\n\nconst {\n markAsUntransferable\x2C\n} = require('internal/buffer');\n\nmodule.exports = {\n isMainThread\x2C\n MessagePort\x2C\n MessageChannel\x2C\n markAsUntransferable\x2C\n moveMessagePortToContext\x2C\n receiveMessageOnPort\x2C\n resourceLimits\x2C\n threadId\x2C\n SHARE_ENV\x2C\n Worker\x2C\n parentPort: null\x2C\n workerData: null\x2C\n BroadcastChannel\x2C\n setEnvironmentData\x2C\n getEnvironmentData\x2C\n};\n +code-source-info,0x1139565202b6,126,0,687,C0O0C4O687,, +code-creation,JS,10,70750,0x1139565204c6,180, node:worker_threads:1:1,0x113956520230,~ +code-source-info,0x1139565204c6,126,0,687,C0O140C3O140C8O25C13O41C18O54C23O72C28O94C33O116C38O128C43O286C46O286C51O179C56O194C61O212C66O240C71O264C76O354C79O354C84O328C89O383C96O404C102O420C108O435C114O453C120O477C126O505C132O529C138O547C144O559C150O572C156O622C162O642C168O664C174O398C179O686,, +code-creation,Eval,10,71042,0x113956521d0e,5, node:internal/worker:1:1,0x113956521100,~ +code-source-info,0x113956521d0e,127,0,16395,C0O0C4O16395,, +code-creation,JS,10,71625,0x1139565232e6,1343, node:internal/worker:1:1,0x113956521c88,~ +code-creation,Eval,10,71750,0x113956525276,5, node:internal/perf/event_loop_utilization:1:1,0x1139565250e0,~ +code-source-info,0x113956525276,128,0,1527,C0O0C4O1527,, +code-creation,JS,10,71834,0x113956525426,85, node:internal/perf/event_loop_utilization:1:1,0x1139565251f0,~ +code-source-info,0x113956525426,128,0,1527,C0O0C29O120C32O120C37O36C42O42C48O88C54O104C60O1449C67O1470C73O1502C79O1464C84O1526,, +tick,0x1010bedec,71917,1,0x100a09554,2,0x0,0x1067893e4,0x106789114,0x113956523505,0x1067894b0,0x106789114,0x1139565204c9,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x11395651b0c6,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,Eval,10,72084,0x1139565263d6,5, node:internal/worker/io:1:1,0x113956525f50,~ +code-source-info,0x1139565263d6,129,0,15479,C0O0C4O15479,, +code-creation,JS,10,72667,0x11395652837e,1709, node:internal/worker/io:1:1,0x113956526350,~ +code-creation,Eval,10,72959,0x11395652c2a6,5, node:internal/error_serdes:1:1,0x11395652bf10,~ +code-source-info,0x11395652c2a6,130,0,5723,C0O0C4O5723,, +code-creation,JS,10,73167,0x11395652c776,448, node:internal/error_serdes:1:1,0x11395652c220,~ +code-source-info,0x11395652c776,130,0,5723,C0O0C138O30C144O30C149O47C153O30C155O66C161O91C166O100C171O113C177O138C183O154C189O170C195O194C201O228C207O257C213O281C218O295C224O322C229O336C234O354C239O365C245O387C251O415C257O436C262O451C268O464C273O477C279O509C285O545C291O581C296O661C302O661C307O625C312O635C318O704C319O704C321O733C323O733C325O760C327O760C329O788C331O788C333O822C335O822C337O854C340O864C344O854C346O888C353O892C359O899C365O910C371O922C377O932C383O945C389O961C395O888C397O1005C400O1017C407O1005C412O1005C414O2716C415O2716C417O2913C418O2913C420O4448C421O4448C423O5668C430O5687C436O5703C442O5683C447O5722,, +tick,0x19571ca90,73209,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x113956523559,0x1067894b0,0x106789114,0x1139565204c9,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x11395651b0c6,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,10,73375,0x11395652ea66,932,Socket node:net:353:16,0x116d9d71adf8,~ +code-creation,JS,10,73459,0x11395652f1a6,166,Duplex node:internal/streams/duplex:54:16,0x116d9d739890,~ +code-source-info,0x11395652f1a6,95,2011,2663,C0O2025C2O2036C7O2060C12O2067C17O2087C18O2091C23O2100C28O2100C34O2123C39O2132C44O2132C50O2156C54O2204C62O2218C63O2194C67O2246C77O2279C83O2303C87O2323C93O2344C97O2363C103O2389C107O2420C117O2453C123O2477C127O2497C133O2519C137O2538C143O2559C147O2578C153O2602C159O2631C160O2650C165O2662,, +code-creation,JS,10,73500,0x11395652f926,220,Readable node:internal/streams/readable:314:18,0x116d9d73cfa8,~ +code-source-info,0x11395652f926,96,10487,11358,C0O10487C9O10501C16O10512C21O10538C28O10545C33O10567C34O10722C41O10738C44O10745C48O10727C52O10756C71O10778C76O10776C80O10825C84O10863C92O10890C95O10911C99O10901C103O10941C111O10971C114O10995C118O10985C122O11028C130O11060C133O11086C137O11076C141O11114C149O11125C151O11141C158O11164C166O11141C171O11186C178O11193C186O11193C192O11217C199O11229C212O11229C219O11357,, +code-creation,JS,10,73542,0x11395652fb76,18,Stream node:internal/streams/legacy:10:16,0x32e0259c6918,~ +code-source-info,0x11395652fb76,97,127,160,C0O138C5O141C10O141C17O159,, +code-creation,JS,10,73625,0x1139565308e6,402,ReadableState node:internal/streams/readable:253:23,0x116d9d73cf58,~ +code-source-info,0x1139565308e6,96,7949,10467,C0O8287C6O8326C8O8355C11O8362C15O8344C20O8489C22O8494C27O8504C32O8517C34O8515C40O8532C42O8530C48O8547C50O8545C53O8502C57O8678C61O8701C67O8713C69O8718C78O8729C83O8726C87O8745C93O8761C95O8780C101O8804C103O8809C112O8820C117O8817C121O8978C126O8999C130O9013C145O9013C154O9086C159O9086C163O8997C167O9289C169O9307C172O9303C177O9301C181O9323C182O9335C186O9342C188O9353C192O9421C196O9444C206O9465C208O9470C217O9482C219O9481C224O9478C228O9570C232O9593C242O9616C244O9621C253O9633C255O9632C260O9629C264O9869C271O9876C279O9897C284O9944C291O9974C296O9993C298O9998C307O10009C312O10006C318O10040C323O10051C328O10051C335O10086C337O10107C343O10141C350O10147C355O10141C356O10299C357O10322C361O10333C365O10356C371O10372C373O10391C376O10413C383O10387C388O10385C392O10452C396O10442C401O10466,, +code-creation,JS,10,73667,0x113956530d5e,98,getHighWaterMark node:internal/streams/state:32:26,0x32e0259c9930,~ +code-source-info,0x113956530d5e,100,826,1234,C0O880C12O880C18O931C21O954C26O959C33O987C38O1013C47O1035C56O1080C69O1086C74O1080C75O1134C80O1141C84O1156C85O1183C88O1220C93O1190C97O1232,, +code-creation,JS,10,73709,0x113956531066,26,highWaterMarkFrom node:internal/streams/state:14:27,0x32e0259c9840,~ +code-source-info,0x113956531066,100,313,454,C0O363C7O395C15O415C19O433C25O452,, +code-creation,JS,10,73709,0x113956531156,22,get node:internal/streams/readable:123:8,0x32e0259ccd08,~ +code-source-info,0x113956531156,96,3814,3855,C0O3819C4O3832C6O3831C12O3840C17O3847C21O3853,, +code-creation,JS,10,73750,0x11395653124e,15,getDefaultHighWaterMark node:internal/streams/state:19:33,0x32e0259c9890,~ +code-source-info,0x11395653124e,100,488,586,C0O505C6O525C12O558C14O584,, +code-creation,JS,10,73750,0x1139565313ce,17,BufferList node:internal/streams/buffer_list:14:14,0x32e0259c8060,~ +code-source-info,0x1139565313ce,99,265,338,C0O274C1O284C5O296C6O306C10O318C11O330C16O337,, +code-creation,JS,10,73792,0x113956531eee,98,construct node:internal/streams/destroy:219:19,0x116d9d737f58,~ +code-source-info,0x113956531eee,94,4433,4821,C0O4468C8O4501C9O4508C10O4533C15O4568C20O4587C24O4600C25O4614C29O4629C33O4642C34O4656C38O4679C45O4684C48O4679C54O4715C61O4729C64O4715C72O4741C77O4766C78O4773C79O4781C82O4789C90O4789C97O4820,, +code-creation,JS,10,73834,0x113956532c06,266,Writable node:internal/streams/writable:375:18,0x32e0259d2cb8,~ +code-source-info,0x113956532c06,103,12486,14066,C0O12486C9O13060C16O13077C19O13084C23O13066C27O13096C33O13114C44O13114C51O13170C58O13177C63O13199C64O13203C83O13225C88O13223C92O13272C96O13310C104O13338C107O13360C111O13350C115O13391C123O13420C126O13443C130O13433C134O13475C142O13505C145O13529C149O13519C153O13562C161O13590C164O13612C168O13602C172O13643C180O13675C183O13701C187O13691C191O13729C197O13743C204O13766C212O13743C217O13788C224O13795C232O13795C238O13819C245O13831C258O13831C265O14065,, +code-creation,JS,10,73917,0x113956532fd6,441,WritableState node:internal/streams/writable:292:23,0x32e0259d2c18,~ +code-source-info,0x113956532fd6,103,9280,11922,C0O9614C6O9653C8O9682C11O9689C15O9671C20O9816C22O9821C27O9831C32O9839C34O9837C40O9854C42O9852C48O9867C50O9865C53O9829C57O9884C61O9907C67O9919C69O9924C78O9935C83O9932C87O9950C93O9966C95O9985C101O10005C103O10010C112O10021C117O10018C121O10222C126O10243C130O10257C145O10257C154O10330C159O10330C163O10241C167O10365C171O10389C181O10414C183O10419C192O10430C197O10427C201O10508C205O10531C215O10552C217O10557C226O10569C228O10568C233O10565C237O10657C241O10680C251O10703C253O10708C262O10720C264O10719C269O10716C273O10956C280O10963C288O10984C293O11031C300O11061C305O11080C307O11085C316O11096C321O11093C327O11127C332O11138C337O11138C344O11173C346O11178C355O11190C357O11189C362O11186C366O11216C368O11221C373O11244C379O11278C386O11284C391O11278C392O11481C393O11493C397O11566C398O11578C402O11640C405O11663C412O11663C418O11653C422O11752C423O11766C427O11774C430O11774C434O11901C435O11916C440O11921,, +code-creation,JS,10,73959,0x11395653343e,22,get node:internal/streams/writable:119:8,0x32e0259d9078,~ +code-source-info,0x11395653343e,103,3822,3863,C0O3827C4O3840C6O3839C12O3848C17O3855C21O3861,, +code-creation,JS,10,73959,0x113956533716,67,resetBuffer node:internal/streams/writable:357:21,0x32e0259d2c68,~ +code-source-info,0x113956533716,103,11944,12088,C0O11956C2O11962C6O11978C10O11988C11O12008C15O12015C17O12021C26O12032C31O12046C33O12044C39O12029C43O12058C45O12064C54O12076C56O12075C61O12072C66O12087,, +code-creation,JS,10,74000,0x113956533a06,50,set node:internal/streams/readable:124:8,0x32e0259ccd58,~ +code-source-info,0x113956533a06,96,3864,3950,C0O3880C4O3891C8O3896C17O3907C20O3904C26O3923C30O3928C39O3939C44O3936C49O3949,, +code-creation,JS,10,74042,0x113956533b66,131,createHandle node:net:165:22,0x116d9d71aa38,~ +code-source-info,0x113956533b66,86,4563,4925,C0O4583C13O4583C18O4626C23O4626C28O4649C30O4658C35O4676C42O4699C46O4711C49O4725C57O4734C60O4748C67O4683C72O4762C73O4770C75O4779C80O4796C87O4818C91O4830C94O4843C102O4852C105O4865C112O4803C117O4879C118O4887C125O4893C130O4887,, +code-creation,JS,10,74042,0x113956533d7e,155, node:internal/validators:114:3,0x1746951fefd8,~ +code-source-info,0x113956533d7e,15,2811,3274,C36O2952C42O2991C58O2997C63O2991C64O3056C69O3061C75O3093C91O3099C96O3093C97O3158C99O3168C106O3183C111O3198C121O3237C134O3250C147O3204C152O3198C154O3273,, +code-creation,JS,10,74084,0x113956533f1e,21,guessHandleType node:internal/util:826:25,0x3f9e7a244220,~ +code-source-info,0x113956533f1e,16,22819,22892,C0O22841C5O22841C10O22865C17O22883C20O22890,, +code-creation,JS,10,74167,0x11395653400e,14,set node:net:2301:6,0x116d9d71d108,~ +code-source-info,0x11395653400e,86,63595,63628,C0O63601C2O63613C7O63622C13O63626,, +code-creation,JS,10,74167,0x1139565340f6,8,get node:net:2300:6,0x116d9d71d0b8,~ +code-source-info,0x1139565340f6,86,63560,63588,C0O63565C2O63577C4O63576C7O63586,, +code-creation,JS,10,74250,0x11395653435e,195,Readable.on node:internal/streams/readable:1103:33,0x116d9d73e2f0,~ +code-source-info,0x11395653435e,96,34992,35891,C0O35017C5O35024C10O35034C15O35037C29O35037C35O35078C40O35097C42O35104C47O35286C55O35286C62O35312C65O35279C69O35405C79O35435C84O35435C90O35454C92O35461C97O35494C103O35515C109O35542C111O35587C117O35566C121O35601C122O35615C126O35630C127O35652C131O35667C139O35694C144O35708C149O35667C154O35734C160O35752C163O35752C169O35796C175O35815C178O35823C186O35823C192O35878C194O35889,, +code-creation,JS,10,74292,0x1139565345d6,135,initSocketHandle node:net:309:26,0x116d9d71ad58,~ +code-source-info,0x1139565345d6,86,7887,8465,C0O7903C5O7903C9O7919C10O7934C14O8020C20O8040C27O8048C32O8062C36O8079C43O8096C45O8094C49O8114C51O8119C57O8157C62O8138C66O8136C70O8186C72O8191C74O8190C78O8205C80O8241C82O8246C84O8245C88O8265C90O8306C94O8324C99O8329C105O8362C106O8369C107O8378C109O8383C114O8392C118O8422C123O8430C128O8430C134O8464,, +code-creation,JS,10,74334,0x11395653480e,155,undestroy node:internal/streams/destroy:154:19,0x116d9d737eb8,~ +code-source-info,0x11395653480e,94,2820,3492,C0O2842C5O2875C10O2894C14O2907C15O2921C19O2933C20O2942C24O2955C25O2970C29O2983C30O2995C34O3008C35O3018C39O3030C40O3045C44O3058C45O3068C49O3093C57O3089C61O3134C69O3130C73O3161C77O3174C78O3188C82O3200C83O3212C87O3225C88O3234C92O3247C93O3262C97O3275C98O3285C102O3297C103O3312C107O3325C108O3339C112O3352C113O3366C117O3391C125O3387C129O3428C137O3424C141O3467C149O3463C154O3491,, +code-creation,JS,10,74375,0x113956534a06,61,set node:internal/streams/readable:177:8,0x116d9d73d9b0,~ +code-source-info,0x113956534a06,96,6229,6392,C0O6245C4O6266C6O6271C11O6286C15O6303C17O6308C26O6319C31O6316C37O6352C39O6357C48O6369C50O6368C55O6365C60O6391,, +code-creation,JS,10,74375,0x113956534b3e,50,set node:internal/streams/writable:120:8,0x32e0259d90c8,~ +code-source-info,0x113956534b3e,103,3872,3958,C0O3888C4O3899C8O3904C17O3915C20O3912C26O3931C30O3936C39O3947C44O3944C49O3957,, +code-creation,JS,10,74417,0x113956534c5e,61,set node:internal/streams/writable:205:8,0x32e0259d3258,~ +code-source-info,0x113956534c5e,103,7017,7180,C0O7033C4O7054C6O7059C11O7074C15O7091C17O7096C26O7107C31O7104C37O7140C39O7145C48O7157C50O7156C55O7153C60O7179,, +code-creation,JS,10,74417,0x113956534da6,47,get node:internal/streams/writable:218:8,0x32e0259d32a8,~ +code-source-info,0x113956534da6,103,7253,7350,C0O7258C2O7271C4O7270C10O7281C12O7279C17O7295C24O7309C26O7308C32O7319C34O7317C39O7330C46O7348,, +code-creation,JS,10,74459,0x11395653512e,32,getNewAsyncId node:net:184:23,0x116d9d71aa88,~ +code-source-info,0x11395653512e,86,4950,5066,C0O4963C4O4996C14O5029C17O5029C22O5051C27O5051C31O5064,, +code-creation,JS,10,74500,0x1139565353de,5,get node:internal/bootstrap/node:371:8,0x1746951fbfb8,~ +code-source-info,0x1139565353de,12,12775,12808,C0O12786C4O12802,, +code-creation,JS,10,74500,0x11395653558e,5,get /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:19:10,0x11395651ae40,~ +code-source-info,0x11395653558e,123,392,404,C0O398C4O404,, +tick,0x101420124,74542,0,0x0,0,0x1139565345e4,0x11395652ed86,0x11395651b0f7,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 +code-creation,JS,11,74667,0x10678cee0,7888,realpathSync node:fs:2611:22,0x3f9e7a26d4b0,^ +code-source-info,0x10678cee0,55,68813,72563,,, +code-creation,JS,11,74709,0x10678edc0,1336,deprecate node:internal/util:156:19,0x3f9e7a2421c8,^ +code-source-info,0x10678edc0,16,4112,5092,,, +code-creation,JS,11,74750,0x10678f320,376,getOwn node:internal/bootstrap/realm:202:16,0x1746951f6648,^ +code-source-info,0x10678f320,9,6377,6531,,, +code-creation,JS,11,74750,0x10678f4c0,840,syncExports node:internal/bootstrap/realm:365:14,0x1746951f6c10,^ +code-source-info,0x10678f4c0,9,11891,12224,,, +code-creation,JS,11,74750,0x10678f820,392,SafeWeakMap node:internal/per_context/primordials:419:16,0x1746951f4a78,^ +code-source-info,0x10678f820,6,12147,12164,,, +code-creation,JS,11,74792,0x10678f9c0,64,noop node:internal/util/debuglog:46:14,0x3f9e7a24a618,^ +code-source-info,0x10678f9c0,22,1404,1412,,, +code-creation,JS,11,74792,0x10678fa20,200,canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36,0x1746951f69b8,^ +code-source-info,0x10678fa20,9,9152,9220,,, +code-creation,JS,11,74792,0x10678fb00,232,readPackage node:internal/modules/package_json_reader:140:21,0x3f9e7a278080,^ +code-source-info,0x10678fb00,65,3950,4020,,, +code-creation,Eval,10,74917,0x1139565363ae,5, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1,0x113956536268,~ +script-source,131,/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js,'use strict'\n\nprocess.on('SIGINT'\x2C process.exit)\nprocess.on('SIGTERM'\x2C process.exit)\n +code-source-info,0x1139565363ae,131,0,85,C0O0C4O85,, +code-creation,JS,10,74959,0x11395653644e,56, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1,0x113956536328,~ +code-source-info,0x11395653644e,131,0,85,C0O14C4O22C12O35C16O43C21O22C27O49C31O57C39O71C43O79C48O57C55O84,, +code-creation,JS,10,75042,0x113956536e76,50,initializeFrozenIntrinsics node:internal/process/pre_execution:714:36,0x3f9e7a279a28,~ +code-source-info,0x113956536e76,67,22147,22369,C0O22154C8O22158C14O22203C17O22211C28O22211C34O22323C40O22323C45O22360C49O22368,, +code-creation,JS,10,75042,0x113956536f96,22,markBootstrapComplete node:internal/process/pre_execution:735:31,0x3f9e7a279ac8,~ +code-source-info,0x113956536f96,67,22751,22815,C0O22758C6O22758C11O22788C16O22789C21O22814,, +code-creation,JS,10,75125,0x1139565370de,94,executeUserEntryPoint node:internal/modules/run_main:127:31,0x3f9e7a27b1d0,~ +code-source-info,0x1139565370de,70,4520,4888,C7O4536C14O4540C22O4570C25O4570C30O4616C33O4616C38O4652C40O4676C45O4687C50O4676C56O4807C62O4807C67O4796C72O4858C87O4858C93O4887,, +code-creation,JS,10,75375,0x11395653782e,248,resolveMainPath node:internal/modules/run_main:15:25,0x3f9e7a27afa8,~ +code-source-info,0x11395653782e,70,344,1479,C0O375C8O375C13O452C15O464C17O480C22O500C30O504C36O550C37O557C38O564C43O580C48O580C56O765C62O765C67O754C72O827C79O837C82O842C87O842C100O827C106O876C110O893C111O900C112O935C120O935C125O981C127O1037C133O1037C138O1022C146O1101C154O1099C164O1149C166O1165C176O1184C186O1191C191O1258C199O1258C204O1223C209O1329C217O1329C222O1315C227O1363C230O1409C237O1363C242O1437C244O1437C245O1461C247O1477,, +code-creation,JS,10,75500,0x113956537cd6,325,tryPackage node:internal/modules/cjs/loader:429:20,0x3f9e7a276690,~ +code-source-info,0x113956537cd6,63,12095,13355,C0O12153C5O12153C10O12178C15O12188C17O12204C22O12225C25O12230C33O12230C46O12211C51O12275C52O12300C57O12305C62O12305C69O12347C72O12347C91O12380C103O12439C106O12444C114O12444C127O12425C133O12489C138O12517C143O12540C146O12545C154O12545C167O12526C173O12595C175O12683C185O12725C198O12739C204O12683C210O12828C212O12837C216O12865C218O12876C221O12881C229O12881C235O12874C239O12925C241O12941C245O13018C247O13018C248O13065C253O13070C261O13070C268O13114C271O13122C281O13171C294O13188C307O13197C317O13122C322O13339C324O13353,, +code-creation,JS,10,75584,0x11395653813e,75,reportModuleNotFoundToWatchMode node:internal/modules/cjs/loader:239:41,0x3f9e7a276190,~ +code-source-info,0x11395653813e,63,6858,7057,C0O6858C9O6885C16O6889C26O6930C32O6942C37O6950C51O6974C54O6992C59O6974C68O6950C74O7056,, +code-creation,JS,10,75625,0x1139565383d6,199,shouldUseESMLoader node:internal/modules/run_main:52:28,0x3f9e7a27b0e0,~ +code-source-info,0x1139565383d6,70,1667,3093,C0O1682C8O1686C15O1732C20O1748C21O1760C22O1936C30O1936C35O2152C43O2152C48O2198C54O2205C59O2224C65O2231C70O2238C71O2250C72O2309C78O2325C84O2325C91O2370C92O2382C93O2387C99O2404C105O2404C112O2449C113O2462C114O2497C120O2497C125O2476C130O2560C135O2670C142O2674C166O2709C167O2721C168O2749C169O2762C170O2823C178O2827C184O3004C191O3011C196O3053C197O3068C198O3081,, +tick,0x1012fafc0,75750,0,0x0,0,0x0,0x9d6055e054a,0x9d6055debdc,0x113956537135,0x1fdc870796cf +code-creation,JS,10,75792,0x113956538966,249, node:internal/process/execution:169:10,0x3f9e7a25a5f8,~ +code-source-info,0x113956538966,33,5799,7350,C0O5963C5O5963C8O6011C19O6073C22O6081C36O6081C41O6129C46O6155C52O6183C57O6205C62O6205C69O6231C72O6244C86O6244C96O6452C99O6465C105O6487C109O6504C113O6522C118O6541C120O6539C124O6570C127O6578C137O6591C140O6578C152O6705C153O6718C154O6862C160O6862C165O6879C173O6880C178O6976C183O6980C188O7036C193O7036C197O7064C198O7076C203O7093C210O7093C216O7136C221O7136C225O7171C230O7171C235O7007C239O7308C244O7308C247O7334C248O7346,, +code-creation,JS,10,76125,0x113956539336,18,clearDefaultTriggerAsyncId node:internal/async_hooks:442:36,0x1746951fe408,~ +code-source-info,0x113956539336,14,15322,15376,C0O15329C7O15345C12O15369C17O15375,, +code-creation,JS,10,76792,0x11395653a7d6,21,get node:internal/bootstrap/node:100:8,0x1746951fb9b0,~ +code-source-info,0x11395653a7d6,12,3833,3880,C0O3844C9O3858C11O3857C17O3868C20O3874,, +code-creation,JS,10,76834,0x11395653a906,151, node:internal/validators:93:3,0x1746951fef88,~ +code-source-info,0x11395653a906,15,2186,2567,C12O2206C25O2236C32O2269C38O2306C54O2312C59O2306C60O2365C65O2370C71O2400C87O2406C92O2400C93O2459C95O2469C102O2484C107O2497C117O2536C130O2549C143O2503C148O2497C150O2566,, +code-creation,JS,10,76959,0x11395653ab0e,46,beforeInspector node:internal/errors:833:18,0x1746951fa520,~ +code-source-info,0x11395653ab0e,10,24705,25081,C0O24719C2O24736C4O24735C11O24803C15O24809C19O24915C21O24935C23O24934C27O24964C31O24927C41O25071C45O25077,, +tick,0x100c25204,79375,0,0x0,3 +tick,0x100e94494,79375,0,0x0,3 +code-creation,JS,10,79375,0x11395653e826,344,prepareStackTrace node:internal/errors:91:27,0x1746951f7630,~ +code-source-info,0x11395653e826,10,2161,3649,C0O2303C5O2326C10O2326C17O2354C22O2373C27O2373C33O2389C38O2408C43O2414C48O2434C53O2450C54O2477C55O2482C61O2485C66O2487C74O2508C78O2526C83O2564C86O2526C93O2610C97O2617C101O2624C102O2624C107O2654C109O2659C115O2662C120O2664C128O2689C132O2699C137O2729C140O2699C147O2760C156O2793C163O2760C168O2807C170O2631C175O2591C179O2992C186O3001C188O2999C193O3028C200O3056C203O3028C208O3112C222O3112C228O3172C230O3195C232O3191C237O3208C239O3230C240O3338C242O3353C249O3370C254O3409C266O3424C281O3440C292O3466C297O3480C302O3527C308O3534C313O3547C315O3566C316O3573C328O3606C334O3606C343O3647,, +code-creation,JS,10,79459,0x11395653eb1e,70,maybeOverridePrepareStackTrace node:internal/errors:136:40,0x1746951f8198,~ +code-source-info,0x11395653eb1e,10,3691,4398,C0O3919C7O3924C18O3984C23O3990C28O3990C34O4022C35O4245C40O4273C48O4313C53O4337C58O4337C64O4369C65O4377C69O4396,, +tick,0x1010bee08,79500,0,0x0,2 +code-creation,JS,10,79500,0x11395653eef6,207,afterInspector node:internal/errors:847:17,0x1746951fa570,~ +code-source-info,0x11395653eef6,10,25099,26368,C0O25141C5O25168C7O25650C13O25686C19O25686C24O25707C29O25708C34O25746C41O25764C46O25789C53O25764C61O25836C64O25746C70O25851C71O25858C77O25862C84O25875C92O25879C97O25898C99O26037C102O26037C106O25949C111O25987C116O26005C121O26083C128O26097C132O26113C140O26137C145O26114C158O26195C165O26212C171O26265C174O26281C179O26296C187O26265C196O26187C201O26316C204O26337C206O26358,, +code-creation,JS,10,79542,0x11395653f11e,32,lazyInternalUtilInspect node:internal/errors:191:33,0x1746951f82d8,~ +code-source-info,0x11395653f11e,10,5499,5595,C0O5506C14O5530C21O5526C27O5566C31O5593,, +code-creation,JS,10,79584,0x11395653f246,32,lazyUtilColors node:internal/errors:197:24,0x1746951f8328,~ +code-source-info,0x11395653f246,10,5636,5713,C0O5643C14O5658C21O5654C27O5693C31O5711,, +code-creation,Eval,10,79625,0x11395653f586,5, node:internal/util/colors:1:1,0x11395653f3f0,~ +code-source-info,0x11395653f586,132,0,1122,C0O0C4O1122,, +code-creation,JS,10,79667,0x11395653f7d6,78, node:internal/util/colors:1:1,0x11395653f500,~ +code-source-info,0x11395653f7d6,132,0,1122,C0O0C26O19C27O19C29O129C37O244C45O508C55O144C59O1096C62O1103C67O1111C72O1111C77O1121,, +new,MemoryChunk,0x2de0c9480000,262144 +code-creation,JS,10,79750,0x11395653febe,211,refresh node:internal/util/colors:25:10,0x11395653f658,~ +code-source-info,0x11395653febe,132,515,1090,C0O524C3O536C8O543C14O576C17O583C22O591C30O614C35O591C41O629C44O636C51O651C59O649C63O688C66O695C73O711C81O709C85O748C88O755C95O771C103O769C107O808C110O815C117O832C125O830C129O869C132O876C139O890C147O888C151O927C154O934C161O949C169O947C173O986C176O993C183O1009C191O1007C195O1043C198O1050C205O1068C210O1089,, +code-creation,JS,10,79792,0x2de0c94813ee,125,getStderr node:internal/bootstrap/switches/is_main_thread:170:19,0x3f9e7a268778,~ +code-source-info,0x2de0c94813ee,52,4444,5117,C0O4451C6O4463C10O4477C11O4480C17O4489C24O4487C30O4521C37O4542C40O4549C44O4540C48O4560C53O4583C60O4574C66O4659C73O4675C77O4693C82O4704C88O4717C91O4725C102O4725C108O4772C116O4772C120O5101C124O5115,, +code-creation,JS,10,80167,0x2de0c948224e,280,createWritableStdioStream node:internal/bootstrap/switches/is_main_thread:47:35,0x3f9e7a268540,~ +code-source-info,0x2de0c948224e,52,1458,3026,C0O1471C2O1541C7O1549C42O1608C48O1608C53O1647C60O1639C66O1670C68O1683C72O1698C74O1761C80O1761C85O1838C95O1818C101O1871C103O1884C107O1898C109O1965C115O1965C120O2197C123O2209C132O2228C137O2236C144O2239C149O2284C155O2284C160O2265C165O2344C180O2378C189O2336C197O2501C209O2520C215O2493C221O2604C223O2617C227O2633C229O2784C235O2784C240O2771C245O2809C250O2841C260O2818C266O2964C268O2974C272O2983C273O2999C277O3010C279O3024,, +code-creation,Eval,10,80250,0x2de0c9482936,5, node:tty:1:1,0x2de0c9482730,~ +code-source-info,0x2de0c9482936,133,0,5058,C0O0C4O5058,, +code-creation,JS,10,80459,0x2de0c948300e,426, node:tty:1:1,0x2de0c94828b0,~ +code-source-info,0x2de0c948300e,133,0,5058,C0O0C53O1159C59O1168C65O1187C70O1239C76O1239C80O1239C82O1278C85O1278C90O1263C96O1268C102O1322C108O1322C112O1322C114O1398C117O1405C122O1358C128O1374C134O1454C140O1454C145O1422C150O1439C155O1524C156O1524C158O2114C161O2146C169O2161C174O2168C179O2114C184O2180C190O2217C195O2180C200O2227C203O2238C212O2259C216O3455C219O3488C227O3503C232O3510C237O3455C242O3522C248O3560C253O3522C258O3570C261O3582C267O3598C271O3607C274O3619C281O3643C285O3661C288O3673C295O3693C299O3707C302O3719C311O3742C315O4203C318O4215C327O4234C331O4378C334O4390C343O4411C347O4561C350O4573C359O4593C363O4736C366O4748C375O4774C379O4913C382O4925C391O4949C395O5004C402O5023C408O5031C414O5043C420O5019C425O5057,, +code-creation,Eval,10,80584,0x2de0c9484076,5, node:internal/tty:1:1,0x2de0c9483e20,~ +code-source-info,0x2de0c9484076,134,0,6485,C0O0C4O6485,, +code-creation,JS,10,80834,0x2de0c94844d6,366, node:internal/tty:1:1,0x2de0c9483ff0,~ +code-source-info,0x2de0c94844d6,134,0,6485,C0O0C69O1186C75O1208C81O1231C87O1255C93O1329C99O1329C104O1309C110O1366C111O1366C113O1395C115O1395C117O1416C119O1416C121O1438C123O1438C125O1460C127O1460C129O1877C136O1890C142O1913C148O1937C154O1960C160O1983C166O2005C172O2026C178O2050C184O2074C190O2096C196O2119C202O2140C208O2163C214O2182C220O2287C226O2379C232O1877C234O2421C336O2421C338O2542C339O2542C341O6433C348O6454C354O6471C360O6448C365O6484,, +tick,0x19579ebd4,80834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x2de0c948309a,0x1067894b0,0x106789114,0x2de0c948227e,0x2de0c94813ff,0x11395653fec1,0x11395653f81e,0x1067894b0,0x106789114,0x11395653f254,0x11395653ef76 +code-creation,JS,10,80917,0x2de0c9485a4e,192,WriteStream node:tty:84:21,0x2de0c9482a08,~ +code-source-info,0x2de0c9485a4e,133,2501,3453,C0O2510C2O2521C7O2550C12O2557C17O2577C18O2580C20O2587C26O2592C32O2605C37O2614C44O2620C49O2614C50O2659C52O2677C65O2677C71O2705C77O2731C84O2737C89O2731C90O2774C95O2778C100O2785C112O2840C116O2785C122O3264C127O3272C134O3272C139O3310C149O3310C155O3343C160O3351C165O3351C171O3377C173O3393C174O3415C177O3406C181O3424C183O3443C186O3434C191O3452,, +tick,0x1957a9d58,82000,1,0x100b009d8,6,0x0,0x2de0c9485a8f,0x2de0c948228a,0x2de0c94813ff,0x11395653fec1,0x11395653f81e,0x1067894b0,0x106789114,0x11395653f254,0x11395653ef76 +code-creation,JS,10,82209,0x2de0c9487386,21,addCleanup node:internal/bootstrap/switches/is_main_thread:142:20,0x3f9e7a2686b0,~ +code-source-info,0x2de0c9487386,52,3658,3730,C0O3667C5O3671C10O3699C15O3699C20O3729,, +code-creation,JS,10,82250,0x2de0c94874ae,80,shouldColorize node:internal/util/colors:17:17,0x11395653f608,~ +code-source-info,0x2de0c94874ae,132,258,504,C0O273C3O285C8O289C14O324C17O331C21O348C26O349C33O365C36O369C37O380C44O393C53O426C61O472C66O472C73O488C79O500,, +code-creation,JS,10,82334,0x2de0c9487b8e,765,getColorDepth node:internal/tty:106:23,0x2de0c94840f8,~ +code-creation,JS,10,82459,0x2de0c9488996,5,get node:internal/util/inspect:370:6,0x3f9e7a248bd8,~ +code-source-info,0x2de0c9488996,21,11149,11191,C0O11158C4O11187,, +tick,0x1009999c4,85334,0,0x0,3,0x0,0x11395653efa4 +tick,0x1957d960c,85334,0,0x0,3,0x0,0x11395653efa4 +code-creation,JS,10,85334,0x2de0c948d8ee,396,inspect node:internal/util/inspect:309:17,0x3f9e7a248b88,~ +code-source-info,0x2de0c948d8ee,21,9025,11035,C0O9025C2O9076C9O9165C15O9197C18O9219C28O9242C31O9264C41O9283C44O9305C54O9332C57O9354C67O9384C70O9406C80O9437C83O9459C93O9496C96O9518C106O9552C109O9574C119O9600C122O9622C132O9643C135O9665C145O9686C148O9708C158O9739C161O9761C172O9800C179O9807C184O9849C191O9856C196O9869C198O9882C203O9911C205O9932C208O9921C212O9965C219O9972C226O9988C231O10017C233O10039C236O10028C240O10096C246O10135C248O10150C254O10169C258O10203C263O10203C268O10240C270O10255C274O10245C279O10290C281O10297C285O10491C292O10536C295O10506C304O10581C309O10608C311O10623C314O10617C320O10653C326O10761C328O10777C332O10265C337O10227C341O10823C347O10831C349O10843C353O10873C359O10919C362O10917C366O10939C372O10987C375O10985C379O10999C390O11006C395O11033,, +code-creation,JS,10,85459,0x2de0c948e35e,491,formatValue node:internal/util/inspect:765:21,0x3f9e7a249188,~ +code-source-info,0x2de0c948e35e,21,23100,25837,C0O23188C14O23265C17O23265C23O23300C26O23327C37O23307C42O23348C43O23355C47O23392C58O23392C64O23416C65O23500C68O23628C73O23657C80O23628C86O23671C88O23702C93O23729C98O23762C109O23762C115O23800C116O23819C122O23838C134O23845C139O23883C140O23894C145O24049C151O24090C153O24096C155O24095C159O24122C165O24255C170O24361C176O24382C181O24394C188O24404C193O24550C202O24578C209O24584C213O24637C216O24643C221O24681C223O24670C228O24708C236O24792C254O24708C260O24962C262O24970C267O24993C273O25034C285O25041C290O25077C291O25096C304O25145C310O25176C315O25145C328O25103C333O25195C334O25381C339O25386C344O25386C351O25421C354O25436C360O25468C362O25487C365O25483C370O25481C374O25508C379O25517C384O25517C392O25567C397O25576C402O25576C408O25594C410O25641C415O25650C419O25655C423O25672C428O25681C433O25681C439O25729C449O25751C463O25729C469O25772C470O25780C485O25787C490O25835,, +code-creation,JS,10,85709,0x2de0c948ee7e,3301,formatRaw node:internal/util/inspect:843:19,0x3f9e7a2491d8,~ +tick,0x195742964,85917,0,0x0,3,0x0,0x2de0c948e543,0x2de0c948da74,0x11395653efba +code-creation,JS,10,85959,0x2de0c949020e,322,getConstructorName node:internal/util/inspect:587:28,0x3f9e7a248fa8,~ +code-source-info,0x2de0c949020e,21,17502,18744,C0O17547C2O17573C7O17591C13O17594C16O17594C22O17646C30O17646C36O17702C38O17760C46O17803C51O17809C58O17814C66O17861C71O17832C78O17877C84O17930C91O17951C94O17966C99O17981C104O17987C109O17966C116O18005C127O18049C138O18005C143O18109C148O18134C153O18140C158O18116C162O18146C163O18158C168O18164C174O18195C178O18233C183O17580C187O18264C191O18295C192O18307C193O18327C198O18327C203O18386C207O18380C212O18399C218O18421C227O18457C228O18485C233O18539C246O18485C252O18560C254O18592C267O18641C273O18667C279O18687C283O18610C298O18701C299O18709C311O18727C321O18742,, +code-creation,JS,10,86042,0x2de0c94904de,13,isInstanceof node:internal/util/inspect:579:22,0x3f9e7a248f58,~ +code-source-info,0x2de0c94904de,21,17376,17473,C3O17406C5O17420C8O17437C11O17454C12O17467,, +code-creation,JS,10,86125,0x2de0c94906e6,223,getKeys node:internal/util/inspect:708:17,0x3f9e7a249098,~ +code-source-info,0x2de0c94906e6,21,21206,22181,C0O21206C9O21234C11O21258C21O21258C26O21296C30O21318C40O21325C45O21375C51O21382C56O21395C63O21395C73O21755C83O21762C91O21760C101O21807C112O21814C118O21814C127O21840C134O21845C143O21882C151O21882C156O21807C160O21921C172O21928C179O21984C185O21991C190O22021C195O22085C206O22115C209O22115C215O22085C220O22167C222O22179,, +code-creation,JS,10,86167,0x2de0c949097e,19,isError node:internal/util:98:17,0x3f9e7a241ce0,~ +code-source-info,0x2de0c949097e,16,2305,2539,C0O2491C5O2498C13O2531C15O2520C18O2537,, +code-creation,JS,10,86250,0x2de0c9490cc6,757,formatError node:internal/util/inspect:1367:21,0x3f9e7a2495e8,~ +code-source-info,0x2de0c9490cc6,21,44775,47150,C0O44831C9O44846C12O44857C18O44846C27O44888C30O44888C35O44912C50O44912C55O44964C60O44976C65O44998C71O45005C78O45015C85O45015C92O45061C101O45061C106O45152C111O45173C117O45156C123O45196C129O45203C136O45213C143O45213C150O45260C159O45260C164O45303C179O45311C185O45436C193O45447C196O45481C202O45447C212O45500C214O45508C219O45531C225O45539C236O45631C251O45631C257O45681C259O45696C264O45710C269O45722C282O45762C296O45762C302O45833C309O45872C314O45833C320O45896C332O45896C338O45950C344O46042C347O46042C351O46066C353O46110C373O46102C404O46102C407O46140C415O46160C419O46140C425O46193C429O46214C433O46228C441O46239C446O46228C453O46257C457O46278C467O46278C486O46335C495O46364C499O46371C505O46409C509O46473C522O46473C528O46523C530O46535C535O46561C545O46585C550O46636C563O46646C569O46713C574O46752C576O46764C583O46093C657O46807C663O46824C671O46824C687O46869C692O46961C698O46976C703O47009C712O47040C718O47009C724O47061C739O47113C748O47069C754O47135C756O47148,, +code-creation,JS,10,86292,0x2de0c94911c6,32,getStackString node:internal/util/inspect:1239:24,0x3f9e7a2493b8,~ +code-source-info,0x2de0c94911c6,21,40538,40625,C0O40563C8O40571C11O40584C16O40571C24O40593C27O40593C31O40623,, +code-creation,JS,10,86334,0x2de0c949137e,191,removeDuplicateErrorKeys node:internal/util/inspect:1303:34,0x3f9e7a2494a8,~ +code-source-info,0x2de0c949137e,21,42760,43150,C0O42797C6O42816C12O42823C17O42855C39O42847C67O42847C70O42907C75O42907C81O43020C83O43030C90O43040C95O43074C99O43040C106O43093C120O43093C125O42836C190O43149,, +code-creation,JS,10,86375,0x2de0c9491626,283,improveStack node:internal/util/inspect:1270:22,0x3f9e7a249458,~ +code-source-info,0x2de0c9491626,21,41541,42725,C0O41729C5O41740C11O41775C17O41775C26O41823C29O41823C36O41878C43O41885C50O41901C56O41907C63O41923C69O41929C74O41962C77O41975C81O42023C92O42023C101O42105C110O42105C116O42166C120O42192C128O42225C133O42239C140O42296C157O42317C168O42296C174O42368C176O42377C181O42397C186O42401C193O42450C194O42458C199O42477C211O42499C219O42535C225O42555C228O42555C241O42624C253O42646C266O42654C269O42654C280O42710C282O42723,, +code-creation,JS,10,86417,0x2de0c9491926,158,getPrefix node:internal/util/inspect:693:19,0x3f9e7a249048,~ +code-source-info,0x2de0c9491926,21,20784,21153,C20O20828C24O20860C26O20868C33O20887C38O20904C43O20915C50O20926C63O20952C73O20960C74O20971C79O20982C86O20993C96O21018C97O21026C99O21034C106O21056C111O21071C117O21095C130O21104C140O21112C141O21119C147O21143C157O21151,, +code-creation,JS,10,86459,0x2de0c9491c2e,194,getStackFrames node:internal/util/inspect:1243:24,0x3f9e7a249408,~ +code-source-info,0x2de0c9491c2e,21,40650,41518,C0O40687C8O40687C14O40729C19O40751C30O40895C37O40916C40O40916C46O40957C49O40957C54O41008C62O41008C68O41060C70O41080C75O41116C82O41137C87O41186C91O41137C100O41116C106O41229C109O41229C115O41213C120O41218C125O41280C126O41288C131O41319C133O41323C137O41348C142O41359C153O41422C160O41436C164O41454C173O41454C186O41422C191O41502C193O41516,, +code-creation,JS,10,86500,0x2de0c9491e3e,27,safeGetCWD node:internal/util/inspect:1357:20,0x3f9e7a249598,~ +code-source-info,0x2de0c9491e3e,21,44622,44753,C0O44633C5O44663C8O44690C13O44690C21O44680C22O44713C23O44720C24O44727C26O44751,, +code-creation,JS,10,86584,0x2de0c9491f4e,21,exists node:internal/bootstrap/realm:280:16,0x1746951f6918,~ +code-source-info,0x2de0c9491f4e,9,8981,9029,C0O8992C5O9013C10O9017C15O9017C20O9025,, +code-creation,JS,10,86584,0x2de0c94920a6,82,stylizeWithColor node:internal/util/inspect:560:26,0x3f9e7a248e68,~ +code-source-info,0x2de0c94920a6,21,16938,17179,C0O16973C3O16981C10O16987C14O17002C16O17047C19O17055C26O17061C30O17074C32O17105C36O17127C52O17134C65O17152C78O17159C79O17166C81O17177,, +code-creation,JS,10,86625,0x2de0c94921d6,6,get node:internal/util/inspect:436:8,0x3f9e7a248c78,~ +code-source-info,0x2de0c94921d6,21,13153,13190,C0O13164C2O13175C5O13184,, +code-creation,RegExp,3,86667,0x10678fc00,2328,^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$ +code-creation,JS,10,86709,0x2de0c9492316,3,getEmptyFormatArray node:internal/util/inspect:575:29,0x3f9e7a248f08,~ +code-source-info,0x2de0c9492316,21,17334,17353,C0O17341C2O17351,, +code-creation,JS,10,86792,0x2de0c949271e,993,formatProperty node:internal/util/inspect:1936:24,0x3f9e7a249d18,~ +code-creation,JS,10,86875,0x2de0c9492d06,11,isUndetectableObject node:internal/util/inspect:176:30,0x3f9e7a248ae8,~ +code-source-info,0x2de0c9492d06,21,3640,3690,C0O3672C9O3677C10O3690,, +code-creation,JS,10,86917,0x2de0c9492fbe,392,formatPrimitive node:internal/util/inspect:1620:25,0x3f9e7a249868,~ +code-source-info,0x2de0c9492fbe,21,53716,55097,C0O53716C9O53737C15O53788C18O53806C23O53819C27O53813C32O53868C37O53881C41O53875C45O53904C54O53947C62O53912C69O53971C74O53988C87O54025C103O54061C113O54261C122O54270C124O54268C129O54302C134O54315C139O54333C143O54327C146O54348C149O54309C154O54361C165O54396C172O54425C181O54425C192O54396C205O54548C211O54579C215O54594C219O54548C229O54368C237O54610C240O54620C241O54631C249O54641C257O54638C265O54669C268O54679C269O54686C275O54721C283O54756C291O54728C296O54774C297O54777C303O54812C311O54847C319O54819C324O54865C325O54868C331O54904C336O54917C341O54911C346O54937C347O54940C353O54978C362O54985C367O55014C368O55043C375O55053C378O55053C386O55050C391O55095,, +code-creation,JS,10,86959,0x2de0c9493456,514,strEscape node:internal/util/inspect:495:19,0x3f9e7a248e18,~ +code-source-info,0x2de0c9493456,21,14775,16911,C0O14802C5O14850C10O14898C13O15157C21O15161C28O15292C36O15297C43O15340C48O15369C56O15374C65O15427C71O15427C78O15471C81O15499C83O15515C88O15531C93O15582C98O15729C107O15736C114O15746C117O15746C124O15797C127O15804C132O15832C133O15843C140O15850C145O15863C159O15869C166O15933C169O15940C174O15968C175O15989C178O16006C180O16024C182O16035C186O16029C191O16068C196O16068C202O16107C204O16117C211O16150C218O16174C225O16197C234O16212C239O16228C241O16237C246O16254C248O16264C253O16268C265O16300C267O16313C279O16313C288O16350C293O16354C307O16379C309O16388C315O16404C321O16414C332O16433C337O16452C343O16462C350O16477C354O16487C358O16481C363O16519C370O16552C374O16519C380O16566C386O16576C397O16595C402O16618C407O16633C409O16667C411O16680C423O16680C438O16720C444O16720C460O16764C462O16773C466O16044C471O16011C479O16808C483O16800C488O16822C490O16832C493O16832C505O16871C508O16878C513O16909,, +code-creation,JS,10,87042,0x2de0c949385e,62,addQuotes node:internal/util/inspect:478:19,0x3f9e7a248d78,~ +code-source-info,0x2de0c949385e,21,14328,14468,C0O14346C2O14357C7O14371C12O14382C22O14389C23O14396C25O14407C30O14421C35O14433C45O14441C46O14448C51O14459C61O14466,, +tick,0x1957a20c4,87084,0,0x0,3,0x0,0x2de0c94934d5,0x2de0c94930b7,0x2de0c948e383,0x2de0c94927a6,0x2de0c948f88a,0x2de0c948e543,0x2de0c948da74,0x11395653efba +code-creation,RegExp,3,87167,0x106790540,1112,^[a-zA-Z_][a-zA-Z_0-9]*$ +code-creation,JS,10,87250,0x2de0c9493b0e,592,reduceToSingleString node:internal/util/inspect:2032:30,0x3f9e7a249db8,~ +code-source-info,0x2de0c9493b0e,21,67959,70831,C0O68035C10O68074C18O68102C25O68110C30O68281C35O68396C37O68415C39O68411C46O68443C51O68458C63O68467C70O69106C77O69119C81O69140C85O69134C90O69180C94O69169C99O69423C104O69436C108O69430C113O69481C117O69485C121O69451C125O69499C129O69492C132O69506C136O69520C151O69524C158O69603C166O69603C172O69633C180O69638C187O69697C193O69717C207O69738C223O69745C233O69786C240O69760C243O69792C244O69902C249O69907C255O69938C260O69907C270O69961C276O69981C290O70002C300O70008C313O70035C321O70052C332O70035C341O70071C348O70091C355O70024C358O70097C359O70200C373O70204C380O70252C381O70268C388O70274C395O70285C416O70300C422O70300C440O70336C443O70322C446O70340C447O70367C455O70398C460O70367C466O70605C468O70610C474O70626C478O70630C485O70637C496O70658C503O70669C521O70685C532O70751C533O70767C540O70773C547O70778C555O70797C566O70778C584O70823C591O70829,, +code-creation,JS,10,87292,0x2de0c9493f6e,135,isBelowBreakLength node:internal/util/inspect:2008:28,0x3f9e7a249d68,~ +code-source-info,0x2de0c9493f6e,21,66997,67928,C0O67450C7O67457C11O67493C15O67484C19O67506C23O67500C28O67523C29O67536C30O67552C32O67566C36O67557C41O67593C47O67609C49O67624C54O67643C58O67624C63O67647C76O67675C78O67696C82O67700C93O67740C97O67734C102O67761C103O67774C104O67575C109O67539C113O67867C115O67879C122O67890C128O67890C134O67926,, +code-creation,JS,10,87334,0x2de0c9494126,76,join node:internal/util:466:14,0x3f9e7a242950,~ +code-source-info,0x2de0c9494126,16,13078,13387,C0O13112C3O13129C9O13136C14O13174C18O13181C22O13203C24O13208C26O13208C31O13290C33O13303C43O13314C45O13321C52O13222C57O13190C61O13342C63O13355C73O13374C75O13385,, diff --git a/53242.0x/meta.json b/53242.0x/meta.json new file mode 100644 index 0000000000..6175a6cb99 --- /dev/null +++ b/53242.0x/meta.json @@ -0,0 +1 @@ +{"_":["test/integration/crud"],"open":false,"o":false,"version":false,"v":false,"help":false,"h":false,"quiet":false,"q":false,"silent":false,"s":false,"treeDebug":false,"tree-debug":false,"kernelTracingDebug":false,"kernel-tracing-debug":false,"kernelTracing":false,"kernel-tracing":false,"collectOnly":false,"collect-only":false,"writeTicks":false,"write-ticks":false,"--":[],"workingDir":"/Users/aditi.khare/Desktop/node-mongodb-native","argv":["test/integration/crud"],"pathToNodeBinary":"/Users/aditi.khare/.local/share/nvm/v20.10.0/bin/node","name":"flamegraph","collectDelay":0,"title":"node test/integration/crud","pid":53242,"inlined":{}} \ No newline at end of file diff --git a/results.json b/results.json new file mode 100644 index 0000000000..453468e64f --- /dev/null +++ b/results.json @@ -0,0 +1,282 @@ +[ + { + "info": { + "test_name": "singleBench", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": null + } + ] + }, + { + "info": { + "test_name": "multiBench", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 371.2659722863112 + } + ] + }, + { + "info": { + "test_name": "parallelBench", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 401.8758834543072 + } + ] + }, + { + "info": { + "test_name": "readBench", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 452.728703781521 + } + ] + }, + { + "info": { + "test_name": "writeBench", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": null + } + ] + }, + { + "info": { + "test_name": "driverBench", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": null + } + ] + }, + { + "info": { + "test_name": "ldjsonMultiFileUpload", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 43.76500458178488 + } + ] + }, + { + "info": { + "test_name": "ldjsonMultiFileExport", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 48.97410960267591 + } + ] + }, + { + "info": { + "test_name": "gridfsMultiFileUpload", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 705.0814634145435 + } + ] + }, + { + "info": { + "test_name": "gridfsMultiFileDownload", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 809.6829562182244 + } + ] + }, + { + "info": { + "test_name": "runCommand", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 0.17235135124516524 + } + ] + }, + { + "info": { + "test_name": "findOne", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 13.351997593144219 + } + ] + }, + { + "info": { + "test_name": "smallDocInsertOne", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": null + } + ] + }, + { + "info": { + "test_name": "largeDocInsertOne", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 75.08738941799564 + } + ] + }, + { + "info": { + "test_name": "findManyAndEmptyCursor", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 93.52213618471905 + } + ] + }, + { + "info": { + "test_name": "smallDocBulkInsert", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 45.12345357012866 + } + ] + }, + { + "info": { + "test_name": "largeDocBulkInsert", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 50.54807457687957 + } + ] + }, + { + "info": { + "test_name": "gridFsUpload", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 653.0132685955446 + } + ] + }, + { + "info": { + "test_name": "gridFsDownload", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 1298.1123193088413 + } + ] + }, + { + "info": { + "test_name": "findManyAndToArray", + "tags": [ + "js-bson" + ] + }, + "metrics": [ + { + "name": "megabytes_per_second", + "value": 87.27658148175398 + } + ] + } +] \ No newline at end of file diff --git a/src/error.ts b/src/error.ts index 2b304c3ea6..31373221d2 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1241,10 +1241,10 @@ export function needsRetryableWriteLabel( } } - if (error instanceof MongoWriteConcernError) { - return serverType === 'Mongos' && maxWireVersion < 9 - ? false - : RETRYABLE_WRITE_ERROR_CODES.has(error.result?.code ?? Number(error.code) ?? 0); + if (error instanceof MongoWriteConcernError && !(serverType === 'Mongos' && maxWireVersion < 9)) { + return RETRYABLE_WRITE_ERROR_CODES.has( + error.result.writeConcernError.code ?? Number(error.code) ?? 0 + ); } if (error instanceof MongoError && typeof error.code === 'number') { diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 680bd7a96f..b8629e4f44 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -21,19 +21,19 @@ describe('Legacy Retryable Writes Specs', function () { const retryableWrites = loadSpecTests('retryable-writes', 'legacy'); const LEGACY_SKIP_TESTS_4_4_SHARDED = [ - 'BulkWrite succeeds after WriteConcernError ShutdownInProgress', - 'DeleteOne succeeds after WriteConcernError ShutdownInProgress', - 'FindOneAndDelete succeeds after WriteConcernError ShutdownInProgress', - 'FindOneAndReplace succeeds after WriteConcernError ShutdownInProgress', - 'FindOneAndUpdate succeeds after WriteConcernError ShutdownInProgress', - 'InsertMany succeeds after WriteConcernError ShutdownInProgress', - 'InsertOne succeeds after WriteConcernError InterruptedAtShutdown', - 'InsertOne succeeds after WriteConcernError InterruptedDueToReplStateChange', - 'InsertOne succeeds after WriteConcernError PrimarySteppedDown', - 'InsertOne succeeds after WriteConcernError ShutdownInProgress', - 'InsertOne fails after multiple retryable writeConcernErrors', - 'ReplaceOne succeeds after WriteConcernError ShutdownInProgress', - 'UpdateOne succeeds after WriteConcernError ShutdownInProgress' + // 'BulkWrite succeeds after WriteConcernError ShutdownInProgress', + // 'DeleteOne succeeds after WriteConcernError ShutdownInProgress', + // 'FindOneAndDelete succeeds after WriteConcernError ShutdownInProgress', + // 'FindOneAndReplace succeeds after WriteConcernError ShutdownInProgress', + // 'FindOneAndUpdate succeeds after WriteConcernError ShutdownInProgress', + // 'InsertMany succeeds after WriteConcernError ShutdownInProgress', + // 'InsertOne succeeds after WriteConcernError InterruptedAtShutdown', + // 'InsertOne succeeds after WriteConcernError InterruptedDueToReplStateChange', + // 'InsertOne succeeds after WriteConcernError PrimarySteppedDown', + // 'InsertOne succeeds after WriteConcernError ShutdownInProgress', + // 'InsertOne fails after multiple retryable writeConcernErrors', + // 'ReplaceOne succeeds after WriteConcernError ShutdownInProgress', + // 'UpdateOne succeeds after WriteConcernError ShutdownInProgress' ]; for (const suite of retryableWrites) { From ac247a7ac5981ab06c40f7426a8df43bbace14ea Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Thu, 11 Jul 2024 13:33:36 -0400 Subject: [PATCH 14/18] delete extraneous folder --- 53242.0x/flamegraph.html | 13952 ------- ...solate-0x138008000-53242-53242-v8.log.json | 32476 ---------------- ...008000-53242-53242-v8.log.preprocess-ready | 3218 -- 53242.0x/meta.json | 1 - results.json | 282 - 5 files changed, 49929 deletions(-) delete mode 100644 53242.0x/flamegraph.html delete mode 100644 53242.0x/isolate-0x138008000-53242-53242-v8.log.json delete mode 100644 53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready delete mode 100644 53242.0x/meta.json delete mode 100644 results.json diff --git a/53242.0x/flamegraph.html b/53242.0x/flamegraph.html deleted file mode 100644 index e13ab8bf7a..0000000000 --- a/53242.0x/flamegraph.html +++ /dev/null @@ -1,13952 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/53242.0x/isolate-0x138008000-53242-53242-v8.log.json b/53242.0x/isolate-0x138008000-53242-53242-v8.log.json deleted file mode 100644 index f559f13805..0000000000 --- a/53242.0x/isolate-0x138008000-53242-53242-v8.log.json +++ /dev/null @@ -1,32476 +0,0 @@ -{ - "code": [ - { - "name": "/Users/aditi.khare/.local/share/nvm/v20.10.0/bin/node", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libobjc.A.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/liboah.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libfakelink.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libicucore.A.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libSystem.B.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libc++abi.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libc++.1.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libcache.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libcommonCrypto.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libcompiler_rt.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libcopyfile.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libcorecrypto.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libdispatch.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libdyld.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libkeymgr.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libmacho.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libquarantine.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libremovefile.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_asl.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_blocks.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_c.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_collections.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_configuration.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_containermanager.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_coreservices.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_darwin.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_darwindirectory.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_dnssd.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_eligibility.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_featureflags.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_info.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_m.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_malloc.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_networkextension.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_notify.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_sandbox.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_sanitizers.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_secinit.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_kernel.dylib", - "type": "SHARED_LIB" - }, - { - "name": "T _kdebug_is_enabled", - "type": "CPP" - }, - { - "name": "T _kdebug_typefilter", - "type": "CPP" - }, - { - "name": "T _kdebug_trace", - "type": "CPP" - }, - { - "name": "T _issetugid", - "type": "CPP" - }, - { - "name": "T _mach_vm_map", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_allocate_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_purgable_control_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_deallocate_trap", - "type": "CPP" - }, - { - "name": "T _task_dyld_process_info_notify_get", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_protect_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_map_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_allocate_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_deallocate_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_mod_refs_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_move_member_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_insert_right_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_insert_member_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_extract_member_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_construct_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_destruct_trap", - "type": "CPP" - }, - { - "name": "T _mach_reply_port", - "type": "CPP" - }, - { - "name": "T _thread_self_trap", - "type": "CPP" - }, - { - "name": "T _task_self_trap", - "type": "CPP" - }, - { - "name": "T _host_self_trap", - "type": "CPP" - }, - { - "name": "T _mach_msg_trap", - "type": "CPP" - }, - { - "name": "T _mach_msg_overwrite_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_signal_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_signal_all_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_signal_thread_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_wait_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_wait_signal_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_timedwait_trap", - "type": "CPP" - }, - { - "name": "T _semaphore_timedwait_signal_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_attributes_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_guard_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_unguard_trap", - "type": "CPP" - }, - { - "name": "T _mach_generate_activity_id", - "type": "CPP" - }, - { - "name": "T _task_name_for_pid", - "type": "CPP" - }, - { - "name": "T _task_for_pid", - "type": "CPP" - }, - { - "name": "T _pid_for_task", - "type": "CPP" - }, - { - "name": "T _mach_msg2_trap", - "type": "CPP" - }, - { - "name": "T _macx_swapon", - "type": "CPP" - }, - { - "name": "T _macx_swapoff", - "type": "CPP" - }, - { - "name": "T _thread_get_special_reply_port", - "type": "CPP" - }, - { - "name": "T _macx_triggers", - "type": "CPP" - }, - { - "name": "T _macx_backing_store_suspend", - "type": "CPP" - }, - { - "name": "T _macx_backing_store_recovery", - "type": "CPP" - }, - { - "name": "T _swtch_pri", - "type": "CPP" - }, - { - "name": "T _swtch", - "type": "CPP" - }, - { - "name": "T _syscall_thread_switch", - "type": "CPP" - }, - { - "name": "T _clock_sleep_trap", - "type": "CPP" - }, - { - "name": "T _host_create_mach_voucher_trap", - "type": "CPP" - }, - { - "name": "T _mach_voucher_extract_attr_recipe_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_type_trap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_request_notification_trap", - "type": "CPP" - }, - { - "name": "T __exclaves_ctl_trap", - "type": "CPP" - }, - { - "name": "T _mach_timebase_info_trap", - "type": "CPP" - }, - { - "name": "T _mach_wait_until", - "type": "CPP" - }, - { - "name": "T _mk_timer_create", - "type": "CPP" - }, - { - "name": "T _mk_timer_destroy", - "type": "CPP" - }, - { - "name": "T _mk_timer_arm", - "type": "CPP" - }, - { - "name": "T _mk_timer_cancel", - "type": "CPP" - }, - { - "name": "T _mk_timer_arm_leeway", - "type": "CPP" - }, - { - "name": "T _debug_control_port_for_pid", - "type": "CPP" - }, - { - "name": "T _task_restartable_ranges_register", - "type": "CPP" - }, - { - "name": "t _memcpy", - "type": "CPP" - }, - { - "name": "T _mig_get_reply_port", - "type": "CPP" - }, - { - "name": "T _mach_msg", - "type": "CPP" - }, - { - "name": "T _mach_timebase_info", - "type": "CPP" - }, - { - "name": "T _mach_continuous_time", - "type": "CPP" - }, - { - "name": "T _mach_absolute_time", - "type": "CPP" - }, - { - "name": "T _mach_absolute_time_kernel", - "type": "CPP" - }, - { - "name": "T _mach_continuous_time_kernel", - "type": "CPP" - }, - { - "name": "T _getentropy", - "type": "CPP" - }, - { - "name": "T ___libkernel_voucher_init", - "type": "CPP" - }, - { - "name": "T _getpid", - "type": "CPP" - }, - { - "name": "T _task_get_special_port", - "type": "CPP" - }, - { - "name": "T _mach_port_mod_refs", - "type": "CPP" - }, - { - "name": "T _task_info", - "type": "CPP" - }, - { - "name": "T _csops_audittoken", - "type": "CPP" - }, - { - "name": "T _cerror_nocancel", - "type": "CPP" - }, - { - "name": "T ___error", - "type": "CPP" - }, - { - "name": "T _getattrlist", - "type": "CPP" - }, - { - "name": "T _access", - "type": "CPP" - }, - { - "name": "T ___open", - "type": "CPP" - }, - { - "name": "T _csr_check", - "type": "CPP" - }, - { - "name": "T ___csrctl", - "type": "CPP" - }, - { - "name": "T _fcntl", - "type": "CPP" - }, - { - "name": "T ___fcntl", - "type": "CPP" - }, - { - "name": "T _close", - "type": "CPP" - }, - { - "name": "T _read", - "type": "CPP" - }, - { - "name": "T ___open_nocancel", - "type": "CPP" - }, - { - "name": "T _mmap", - "type": "CPP" - }, - { - "name": "T ___mmap", - "type": "CPP" - }, - { - "name": "T _voucher_mach_msg_set", - "type": "CPP" - }, - { - "name": "T _mach_host_self", - "type": "CPP" - }, - { - "name": "T _host_get_special_port", - "type": "CPP" - }, - { - "name": "T _mach_msg_destroy", - "type": "CPP" - }, - { - "name": "t _mach_msg_destroy_port", - "type": "CPP" - }, - { - "name": "T _host_create_mach_voucher", - "type": "CPP" - }, - { - "name": "T _voucher_mach_msg_clear", - "type": "CPP" - }, - { - "name": "T _mach_port_construct", - "type": "CPP" - }, - { - "name": "T _task_set_special_port", - "type": "CPP" - }, - { - "name": "T _geteuid", - "type": "CPP" - }, - { - "name": "T _mach_port_deallocate", - "type": "CPP" - }, - { - "name": "T _proc_pidinfo", - "type": "CPP" - }, - { - "name": "T ___proc_info", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_map", - "type": "CPP" - }, - { - "name": "T _mach_make_memory_entry_64", - "type": "CPP" - }, - { - "name": "T ___sysctl", - "type": "CPP" - }, - { - "name": "T _mach_approximate_time", - "type": "CPP" - }, - { - "name": "T _mig_get_special_reply_port", - "type": "CPP" - }, - { - "name": "T _mig_strncpy_zerofill", - "type": "CPP" - }, - { - "name": "T ___shm_open", - "type": "CPP" - }, - { - "name": "T _close$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___openat", - "type": "CPP" - }, - { - "name": "T _cerror", - "type": "CPP" - }, - { - "name": "T _lseek", - "type": "CPP" - }, - { - "name": "T _pread", - "type": "CPP" - }, - { - "name": "T _mach_voucher_deallocate", - "type": "CPP" - }, - { - "name": "T ___sysctlbyname", - "type": "CPP" - }, - { - "name": "T _mach_port_destruct", - "type": "CPP" - }, - { - "name": "T ___sandbox_ms", - "type": "CPP" - }, - { - "name": "T _chdir", - "type": "CPP" - }, - { - "name": "T _mkdir", - "type": "CPP" - }, - { - "name": "T _mach_vm_deallocate", - "type": "CPP" - }, - { - "name": "T _getuid", - "type": "CPP" - }, - { - "name": "T _pthread_getugid_np", - "type": "CPP" - }, - { - "name": "T _getegid", - "type": "CPP" - }, - { - "name": "T _csops", - "type": "CPP" - }, - { - "name": "T _proc_pidpath", - "type": "CPP" - }, - { - "name": "T ___getdirentries64", - "type": "CPP" - }, - { - "name": "T ___workq_kernreturn", - "type": "CPP" - }, - { - "name": "T ___workq_open", - "type": "CPP" - }, - { - "name": "T _kevent_qos", - "type": "CPP" - }, - { - "name": "T _kevent_id", - "type": "CPP" - }, - { - "name": "T ___bsdthread_ctl", - "type": "CPP" - }, - { - "name": "T ___thread_selfid", - "type": "CPP" - }, - { - "name": "T ___ulock_wait", - "type": "CPP" - }, - { - "name": "T _mach_port_request_notification", - "type": "CPP" - }, - { - "name": "T ___ulock_wake", - "type": "CPP" - }, - { - "name": "T ___commpage_gettimeofday", - "type": "CPP" - }, - { - "name": "t ___commpage_gettimeofday_internal", - "type": "CPP" - }, - { - "name": "T _read$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _mach_get_times", - "type": "CPP" - }, - { - "name": "T _host_request_notification", - "type": "CPP" - }, - { - "name": "T _mach_port_allocate", - "type": "CPP" - }, - { - "name": "T _mach_port_insert_member", - "type": "CPP" - }, - { - "name": "T _vm_allocate", - "type": "CPP" - }, - { - "name": "T _mach_vm_allocate", - "type": "CPP" - }, - { - "name": "T _vm_deallocate", - "type": "CPP" - }, - { - "name": "T _getrlimit", - "type": "CPP" - }, - { - "name": "T ___getrlimit", - "type": "CPP" - }, - { - "name": "T _getaudit_addr", - "type": "CPP" - }, - { - "name": "T _syscall", - "type": "CPP" - }, - { - "name": "T _readlink", - "type": "CPP" - }, - { - "name": "T _mach_port_insert_right", - "type": "CPP" - }, - { - "name": "T _proc_setpcontrol", - "type": "CPP" - }, - { - "name": "T _vm_remap", - "type": "CPP" - }, - { - "name": "T __kernelrpc_vm_remap", - "type": "CPP" - }, - { - "name": "T _task_policy_set", - "type": "CPP" - }, - { - "name": "T _mach_voucher_extract_attr_recipe", - "type": "CPP" - }, - { - "name": "T _mach_port_get_attributes", - "type": "CPP" - }, - { - "name": "T _mach_port_set_attributes", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_set_attributes", - "type": "CPP" - }, - { - "name": "T _kdebug_trace_string", - "type": "CPP" - }, - { - "name": "T ___kdebug_trace64", - "type": "CPP" - }, - { - "name": "T _mach_port_type", - "type": "CPP" - }, - { - "name": "T _posix_madvise", - "type": "CPP" - }, - { - "name": "T ___psynch_mutexwait", - "type": "CPP" - }, - { - "name": "T _setrlimit", - "type": "CPP" - }, - { - "name": "T ___setrlimit", - "type": "CPP" - }, - { - "name": "T _task_restartable_ranges_synchronize", - "type": "CPP" - }, - { - "name": "T ___disable_threadsignal", - "type": "CPP" - }, - { - "name": "T ___bsdthread_terminate", - "type": "CPP" - }, - { - "name": "T ___psynch_mutexdrop", - "type": "CPP" - }, - { - "name": "T _mach_port_guard", - "type": "CPP" - }, - { - "name": "T _semaphore_create", - "type": "CPP" - }, - { - "name": "T _semaphore_wait", - "type": "CPP" - }, - { - "name": "T _semaphore_signal", - "type": "CPP" - }, - { - "name": "T _vm_copy", - "type": "CPP" - }, - { - "name": "T _getxattr", - "type": "CPP" - }, - { - "name": "T _thread_destruct_special_reply_port", - "type": "CPP" - }, - { - "name": "T _mig_dealloc_reply_port", - "type": "CPP" - }, - { - "name": "T _semaphore_destroy", - "type": "CPP" - }, - { - "name": "T _proc_track_dirty", - "type": "CPP" - }, - { - "name": "T _proc_set_dirty", - "type": "CPP" - }, - { - "name": "T _mach_port_get_refs", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_refs", - "type": "CPP" - }, - { - "name": "T ___semwait_signal", - "type": "CPP" - }, - { - "name": "T _voucher_mach_msg_revert", - "type": "CPP" - }, - { - "name": "T _voucher_mach_msg_adopt", - "type": "CPP" - }, - { - "name": "T _mach_port_extract_member", - "type": "CPP" - }, - { - "name": "T _sigprocmask", - "type": "CPP" - }, - { - "name": "T ___sigaltstack", - "type": "CPP" - }, - { - "name": "T _pwrite", - "type": "CPP" - }, - { - "name": "T _ftruncate", - "type": "CPP" - }, - { - "name": "T _setattrlist", - "type": "CPP" - }, - { - "name": "T _getattrlistbulk", - "type": "CPP" - }, - { - "name": "T _listxattr", - "type": "CPP" - }, - { - "name": "T ___psynch_cvwait", - "type": "CPP" - }, - { - "name": "T ___psynch_cvbroad", - "type": "CPP" - }, - { - "name": "T _guarded_open_np", - "type": "CPP" - }, - { - "name": "T ___guarded_open_np", - "type": "CPP" - }, - { - "name": "T _guarded_pwrite_np", - "type": "CPP" - }, - { - "name": "T _vm_purgable_control", - "type": "CPP" - }, - { - "name": "T _mach_vm_purgable_control", - "type": "CPP" - }, - { - "name": "T _fsctl", - "type": "CPP" - }, - { - "name": "T _fgetattrlist", - "type": "CPP" - }, - { - "name": "T _munmap", - "type": "CPP" - }, - { - "name": "T ___munmap", - "type": "CPP" - }, - { - "name": "T _fsgetpath", - "type": "CPP" - }, - { - "name": "T _setxattr", - "type": "CPP" - }, - { - "name": "T _mkdirat", - "type": "CPP" - }, - { - "name": "T _guarded_close_np", - "type": "CPP" - }, - { - "name": "T _fsync", - "type": "CPP" - }, - { - "name": "T _host_get_io_master", - "type": "CPP" - }, - { - "name": "T _write", - "type": "CPP" - }, - { - "name": "T _rename", - "type": "CPP" - }, - { - "name": "T ___rename", - "type": "CPP" - }, - { - "name": "T ___inc_remove_counter", - "type": "CPP" - }, - { - "name": "T _rmdir", - "type": "CPP" - }, - { - "name": "T ___rmdir", - "type": "CPP" - }, - { - "name": "T _chmod", - "type": "CPP" - }, - { - "name": "T ___chmod", - "type": "CPP" - }, - { - "name": "T _mach_vm_protect", - "type": "CPP" - }, - { - "name": "T ___bsdthread_create", - "type": "CPP" - }, - { - "name": "T _mprotect", - "type": "CPP" - }, - { - "name": "t ___gettimeofday_with_mach", - "type": "CPP" - }, - { - "name": "T ___gettimeofday", - "type": "CPP" - }, - { - "name": "T _writev", - "type": "CPP" - }, - { - "name": "T ___psynch_cvclrprepost", - "type": "CPP" - }, - { - "name": "T _write$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _kpersona_info", - "type": "CPP" - }, - { - "name": "T ___persona", - "type": "CPP" - }, - { - "name": "T _unlink", - "type": "CPP" - }, - { - "name": "T ___unlink", - "type": "CPP" - }, - { - "name": "T _flock", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_request_notification", - "type": "CPP" - }, - { - "name": "T _necp_open", - "type": "CPP" - }, - { - "name": "T _change_fdguard_np", - "type": "CPP" - }, - { - "name": "T _necp_client_action", - "type": "CPP" - }, - { - "name": "T _kpersona_get", - "type": "CPP" - }, - { - "name": "T _getgid", - "type": "CPP" - }, - { - "name": "T _audit_session_self", - "type": "CPP" - }, - { - "name": "T _socket", - "type": "CPP" - }, - { - "name": "T _fcntl$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___fcntl_nocancel", - "type": "CPP" - }, - { - "name": "T _setsockopt", - "type": "CPP" - }, - { - "name": "T _connect$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _sendto$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _select$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _select$DARWIN_EXTSN$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _recvfrom$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _socketpair", - "type": "CPP" - }, - { - "name": "T _sendmsg$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _ioctl", - "type": "CPP" - }, - { - "name": "T ___ioctl", - "type": "CPP" - }, - { - "name": "T _connect", - "type": "CPP" - }, - { - "name": "T _sendto", - "type": "CPP" - }, - { - "name": "T _recvfrom", - "type": "CPP" - }, - { - "name": "T _connectx", - "type": "CPP" - }, - { - "name": "T _getsockopt", - "type": "CPP" - }, - { - "name": "T _shutdown", - "type": "CPP" - }, - { - "name": "T _fgetxattr", - "type": "CPP" - }, - { - "name": "T _dup", - "type": "CPP" - }, - { - "name": "T _select", - "type": "CPP" - }, - { - "name": "T _getpeername", - "type": "CPP" - }, - { - "name": "T _fchmod", - "type": "CPP" - }, - { - "name": "T ___fchmod", - "type": "CPP" - }, - { - "name": "T _getiopolicy_np", - "type": "CPP" - }, - { - "name": "T ___iopolicysys", - "type": "CPP" - }, - { - "name": "T _mach_msg_send", - "type": "CPP" - }, - { - "name": "T _link", - "type": "CPP" - }, - { - "name": "T _mach_right_send_release", - "type": "CPP" - }, - { - "name": "T _vm_protect", - "type": "CPP" - }, - { - "name": "T _recvmsg", - "type": "CPP" - }, - { - "name": "T _mig_reply_setup", - "type": "CPP" - }, - { - "name": "T _mach_vm_region", - "type": "CPP" - }, - { - "name": "T _semaphore_timedwait", - "type": "CPP" - }, - { - "name": "T ___psynch_cvsignal", - "type": "CPP" - }, - { - "name": "T _mach_voucher_attr_command", - "type": "CPP" - }, - { - "name": "T _removexattr", - "type": "CPP" - }, - { - "name": "T _clonefileat", - "type": "CPP" - }, - { - "name": "T _host_info", - "type": "CPP" - }, - { - "name": "T _mach_port_move_member", - "type": "CPP" - }, - { - "name": "T _thread_policy", - "type": "CPP" - }, - { - "name": "T __kernelrpc_thread_policy", - "type": "CPP" - }, - { - "name": "T _mig_put_reply_port", - "type": "CPP" - }, - { - "name": "T _mig_strncpy", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_wrlock", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_unlock", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_rdlock", - "type": "CPP" - }, - { - "name": "T _fsetxattr", - "type": "CPP" - }, - { - "name": "T _mach_port_get_context", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_context", - "type": "CPP" - }, - { - "name": "T _fchflags", - "type": "CPP" - }, - { - "name": "T _futimes", - "type": "CPP" - }, - { - "name": "T _umask", - "type": "CPP" - }, - { - "name": "T _utimes", - "type": "CPP" - }, - { - "name": "T _thread_switch", - "type": "CPP" - }, - { - "name": "T _clock_get_time", - "type": "CPP" - }, - { - "name": "T _mach_port_destroy", - "type": "CPP" - }, - { - "name": "T _gethostuuid", - "type": "CPP" - }, - { - "name": "T ___gethostuuid", - "type": "CPP" - }, - { - "name": "T ___stat64_extended", - "type": "CPP" - }, - { - "name": "T ___chmod_extended", - "type": "CPP" - }, - { - "name": "T ___lstat64_extended", - "type": "CPP" - }, - { - "name": "T _open_dprotected_np", - "type": "CPP" - }, - { - "name": "T ___open_dprotected_np", - "type": "CPP" - }, - { - "name": "T ___fstat64_extended", - "type": "CPP" - }, - { - "name": "T ___fchmod_extended", - "type": "CPP" - }, - { - "name": "T _fsetattrlist", - "type": "CPP" - }, - { - "name": "T _fchown", - "type": "CPP" - }, - { - "name": "T _getgroups", - "type": "CPP" - }, - { - "name": "T _lchown", - "type": "CPP" - }, - { - "name": "T _symlink", - "type": "CPP" - }, - { - "name": "T ___openat_nocancel", - "type": "CPP" - }, - { - "name": "T _sendmsg", - "type": "CPP" - }, - { - "name": "T _mig_deallocate", - "type": "CPP" - }, - { - "name": "T ___kdebug_typefilter", - "type": "CPP" - }, - { - "name": "T ___libkernel_init", - "type": "CPP" - }, - { - "name": "T _mach_init", - "type": "CPP" - }, - { - "name": "t _mach_init_doit", - "type": "CPP" - }, - { - "name": "T __init_cpu_capabilities", - "type": "CPP" - }, - { - "name": "T __get_cpu_capabilities", - "type": "CPP" - }, - { - "name": "t __libkernel_strcmp", - "type": "CPP" - }, - { - "name": "T ___libkernel_platform_init", - "type": "CPP" - }, - { - "name": "T _mach_thread_self", - "type": "CPP" - }, - { - "name": "T ___bsdthread_register", - "type": "CPP" - }, - { - "name": "T _host_get_clock_service", - "type": "CPP" - }, - { - "name": "T _proc_name", - "type": "CPP" - }, - { - "name": "T _kqueue", - "type": "CPP" - }, - { - "name": "T _kevent", - "type": "CPP" - }, - { - "name": "T _pselect$DARWIN_EXTSN", - "type": "CPP" - }, - { - "name": "T ___pselect", - "type": "CPP" - }, - { - "name": "T _quotactl", - "type": "CPP" - }, - { - "name": "T _fileport_makefd", - "type": "CPP" - }, - { - "name": "T _thread_policy_set", - "type": "CPP" - }, - { - "name": "T __kernelrpc_thread_policy_set", - "type": "CPP" - }, - { - "name": "T _msync", - "type": "CPP" - }, - { - "name": "T _pipe", - "type": "CPP" - }, - { - "name": "T _fileport_makeport", - "type": "CPP" - }, - { - "name": "T ___kqueue_workloop_ctl", - "type": "CPP" - }, - { - "name": "T ___sigaction", - "type": "CPP" - }, - { - "name": "T _getppid", - "type": "CPP" - }, - { - "name": "T _thread_set_exception_ports", - "type": "CPP" - }, - { - "name": "T _mach_error_string", - "type": "CPP" - }, - { - "name": "t _mach_error_string_int", - "type": "CPP" - }, - { - "name": "t _do_compat", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_init", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_adddup2", - "type": "CPP" - }, - { - "name": "t __posix_spawn_file_actions_grow", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_init", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setsigmask", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setsigdefault", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setflags", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getmacpolicyinfo_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setmacpolicyinfo_np", - "type": "CPP" - }, - { - "name": "T ___pthread_fchdir", - "type": "CPP" - }, - { - "name": "T ___pthread_chdir", - "type": "CPP" - }, - { - "name": "T _posix_spawn", - "type": "CPP" - }, - { - "name": "T ___posix_spawn", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_destroy", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_destroy", - "type": "CPP" - }, - { - "name": "T ___wait4", - "type": "CPP" - }, - { - "name": "T _mach_continuous_approximate_time", - "type": "CPP" - }, - { - "name": "T ___pthread_sigmask", - "type": "CPP" - }, - { - "name": "T ___semwait_signal_nocancel", - "type": "CPP" - }, - { - "name": "T _sigsuspend$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___sigsuspend_nocancel", - "type": "CPP" - }, - { - "name": "T __exit", - "type": "CPP" - }, - { - "name": "T _thread_info", - "type": "CPP" - }, - { - "name": "T _proc_pidoriginatorinfo", - "type": "CPP" - }, - { - "name": "T _getrusage", - "type": "CPP" - }, - { - "name": "T _mach_ports_register", - "type": "CPP" - }, - { - "name": "T ___fork", - "type": "CPP" - }, - { - "name": "T _setiopolicy_np", - "type": "CPP" - }, - { - "name": "T _ffsctl", - "type": "CPP" - }, - { - "name": "T _getsockname", - "type": "CPP" - }, - { - "name": "T _proc_set_cpumon_params", - "type": "CPP" - }, - { - "name": "T ___process_policy", - "type": "CPP" - }, - { - "name": "T _proc_set_cpumon_defaults", - "type": "CPP" - }, - { - "name": "T _proc_pid_rusage", - "type": "CPP" - }, - { - "name": "T _chown", - "type": "CPP" - }, - { - "name": "T _bind", - "type": "CPP" - }, - { - "name": "T _guarded_write_np", - "type": "CPP" - }, - { - "name": "T _mach_vm_copy", - "type": "CPP" - }, - { - "name": "T _mach_msg_server", - "type": "CPP" - }, - { - "name": "T _kill", - "type": "CPP" - }, - { - "name": "T ___kill", - "type": "CPP" - }, - { - "name": "T _chflags", - "type": "CPP" - }, - { - "name": "T _pathconf", - "type": "CPP" - }, - { - "name": "T _setpriority", - "type": "CPP" - }, - { - "name": "T ___setpriority", - "type": "CPP" - }, - { - "name": "T _vm_region_64", - "type": "CPP" - }, - { - "name": "T _vm_region_recurse_64", - "type": "CPP" - }, - { - "name": "T _getpriority", - "type": "CPP" - }, - { - "name": "T _proc_rlimit_control", - "type": "CPP" - }, - { - "name": "T ___pthread_kill", - "type": "CPP" - }, - { - "name": "T _setitimer", - "type": "CPP" - }, - { - "name": "T ___sandbox_msp", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_list", - "type": "CPP" - }, - { - "name": "T _listen", - "type": "CPP" - }, - { - "name": "T _accept", - "type": "CPP" - }, - { - "name": "T _poll", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setjetsam_ext", - "type": "CPP" - }, - { - "name": "T _getpgrp", - "type": "CPP" - }, - { - "name": "T _execve", - "type": "CPP" - }, - { - "name": "T _setsid", - "type": "CPP" - }, - { - "name": "T _dup2", - "type": "CPP" - }, - { - "name": "T _mach_msg_overwrite", - "type": "CPP" - }, - { - "name": "T _csr_get_active_config", - "type": "CPP" - }, - { - "name": "T _ptrace", - "type": "CPP" - }, - { - "name": "t _mach_msg_server_consume_unsent_message", - "type": "CPP" - }, - { - "name": "T _getdtablesize", - "type": "CPP" - }, - { - "name": "T _work_interval_create", - "type": "CPP" - }, - { - "name": "T ___work_interval_ctl", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_alloc", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_get_id", - "type": "CPP" - }, - { - "name": "T _memorystatus_control", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_type", - "type": "CPP" - }, - { - "name": "T _task_threads", - "type": "CPP" - }, - { - "name": "T _thread_get_state", - "type": "CPP" - }, - { - "name": "T _setgid", - "type": "CPP" - }, - { - "name": "T _setuid", - "type": "CPP" - }, - { - "name": "T _thread_policy_get", - "type": "CPP" - }, - { - "name": "T ___get_remove_counter", - "type": "CPP" - }, - { - "name": "T _pthread_setugid_np", - "type": "CPP" - }, - { - "name": "T _seteuid", - "type": "CPP" - }, - { - "name": "T _setegid", - "type": "CPP" - }, - { - "name": "T _vm_read", - "type": "CPP" - }, - { - "name": "T __kernelrpc_vm_read", - "type": "CPP" - }, - { - "name": "T ___sem_open", - "type": "CPP" - }, - { - "name": "T _sem_close", - "type": "CPP" - }, - { - "name": "T _auditon", - "type": "CPP" - }, - { - "name": "T _sfi_set_class_offtime", - "type": "CPP" - }, - { - "name": "T ___sfi_ctl", - "type": "CPP" - }, - { - "name": "T _system_set_sfi_window", - "type": "CPP" - }, - { - "name": "T _thread_get_exception_ports", - "type": "CPP" - }, - { - "name": "T _unlinkat", - "type": "CPP" - }, - { - "name": "T ___unlinkat", - "type": "CPP" - }, - { - "name": "T _proc_get_cpumon_params", - "type": "CPP" - }, - { - "name": "T _proc_disable_wakemon", - "type": "CPP" - }, - { - "name": "T _mlock", - "type": "CPP" - }, - { - "name": "T _munlock", - "type": "CPP" - }, - { - "name": "T _proc_set_wakemon_defaults", - "type": "CPP" - }, - { - "name": "T _host_statistics64", - "type": "CPP" - }, - { - "name": "T _proc_listpids", - "type": "CPP" - }, - { - "name": "T _clonefile", - "type": "CPP" - }, - { - "name": "T _proc_denap_assertion_begin_with_msg", - "type": "CPP" - }, - { - "name": "T _proc_importance_assertion_begin_with_msg", - "type": "CPP" - }, - { - "name": "T _proc_denap_assertion_complete", - "type": "CPP" - }, - { - "name": "T _proc_importance_assertion_complete", - "type": "CPP" - }, - { - "name": "T _mach_port_extract_right", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_extract_right", - "type": "CPP" - }, - { - "name": "T _task_set_exception_ports", - "type": "CPP" - }, - { - "name": "T _getpgid", - "type": "CPP" - }, - { - "name": "T _kdebug_signpost_start", - "type": "CPP" - }, - { - "name": "t _kdebug_signpost_internal", - "type": "CPP" - }, - { - "name": "T _kdebug_signpost_end", - "type": "CPP" - }, - { - "name": "T _host_statistics", - "type": "CPP" - }, - { - "name": "T _terminate_with_reason", - "type": "CPP" - }, - { - "name": "T ___terminate_with_payload", - "type": "CPP" - }, - { - "name": "T _task_set_info", - "type": "CPP" - }, - { - "name": "T _mach_voucher_extract_attr_content", - "type": "CPP" - }, - { - "name": "T _guarded_kqueue_np", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_attributes", - "type": "CPP" - }, - { - "name": "T _mach_vm_region_recurse", - "type": "CPP" - }, - { - "name": "T _necp_match_policy", - "type": "CPP" - }, - { - "name": "T _select$DARWIN_EXTSN", - "type": "CPP" - }, - { - "name": "T _mach_vm_read_overwrite", - "type": "CPP" - }, - { - "name": "T _mach_msg_server_once", - "type": "CPP" - }, - { - "name": "T _proc_disable_cpumon", - "type": "CPP" - }, - { - "name": "T _task_get_exception_ports", - "type": "CPP" - }, - { - "name": "T _audit_session_port", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setauditsessionport_np", - "type": "CPP" - }, - { - "name": "t _posix_spawn_appendportaction_np", - "type": "CPP" - }, - { - "name": "T ___sigreturn", - "type": "CPP" - }, - { - "name": "T _audit_session_join", - "type": "CPP" - }, - { - "name": "T ___sigwait", - "type": "CPP" - }, - { - "name": "T _setpgid", - "type": "CPP" - }, - { - "name": "T _lstat64", - "type": "CPP" - }, - { - "name": "T _stat64", - "type": "CPP" - }, - { - "name": "T _open", - "type": "CPP" - }, - { - "name": "T _fstatfs64", - "type": "CPP" - }, - { - "name": "T _mach_ports_lookup", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setcpumonitor_default", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setspecialport_np", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_addopen", - "type": "CPP" - }, - { - "name": "T _kevent64", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setbinpref_np", - "type": "CPP" - }, - { - "name": "T ___setlogin", - "type": "CPP" - }, - { - "name": "T ___initgroups", - "type": "CPP" - }, - { - "name": "T ___getlogin", - "type": "CPP" - }, - { - "name": "T _mach_port_set_context", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_set_context", - "type": "CPP" - }, - { - "name": "T _mach_port_get_set_status", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_set_status", - "type": "CPP" - }, - { - "name": "T ___pthread_canceled", - "type": "CPP" - }, - { - "name": "T _clock_sleep", - "type": "CPP" - }, - { - "name": "T _vm_map", - "type": "CPP" - }, - { - "name": "T __kernelrpc_vm_map", - "type": "CPP" - }, - { - "name": "T _flistxattr", - "type": "CPP" - }, - { - "name": "T _mach_msg_receive", - "type": "CPP" - }, - { - "name": "T _mount", - "type": "CPP" - }, - { - "name": "T _wait4", - "type": "CPP" - }, - { - "name": "T ___open_extended", - "type": "CPP" - }, - { - "name": "T _exchangedata", - "type": "CPP" - }, - { - "name": "T ___carbon_delete", - "type": "CPP" - }, - { - "name": "T ___delete", - "type": "CPP" - }, - { - "name": "T _unmount", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_addinherit_np", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_addclose", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setexceptionports_np", - "type": "CPP" - }, - { - "name": "T _os_cpu_in_cksum_mbuf", - "type": "CPP" - }, - { - "name": "T _os_cpu_copy_in_cksum", - "type": "CPP" - }, - { - "name": "T _sem_open", - "type": "CPP" - }, - { - "name": "T _shm_open", - "type": "CPP" - }, - { - "name": "T _msgsys", - "type": "CPP" - }, - { - "name": "T _semsys", - "type": "CPP" - }, - { - "name": "T _semctl", - "type": "CPP" - }, - { - "name": "T _shmsys", - "type": "CPP" - }, - { - "name": "T _____sigwait_nocancel", - "type": "CPP" - }, - { - "name": "T ___abort_with_payload", - "type": "CPP" - }, - { - "name": "T _accept$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _accessx_np", - "type": "CPP" - }, - { - "name": "T _aio_suspend$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___channel_get_info", - "type": "CPP" - }, - { - "name": "T ___channel_get_opt", - "type": "CPP" - }, - { - "name": "T ___channel_open", - "type": "CPP" - }, - { - "name": "T ___channel_set_opt", - "type": "CPP" - }, - { - "name": "T ___channel_sync", - "type": "CPP" - }, - { - "name": "T ___coalition", - "type": "CPP" - }, - { - "name": "T ___coalition_info", - "type": "CPP" - }, - { - "name": "T ___coalition_ledger", - "type": "CPP" - }, - { - "name": "T ___copyfile", - "type": "CPP" - }, - { - "name": "T ___crossarch_trap", - "type": "CPP" - }, - { - "name": "T ___debug_syscall_reject", - "type": "CPP" - }, - { - "name": "T ___debug_syscall_reject_config", - "type": "CPP" - }, - { - "name": "T ___execve", - "type": "CPP" - }, - { - "name": "T ___fs_snapshot", - "type": "CPP" - }, - { - "name": "T ___fstat_extended", - "type": "CPP" - }, - { - "name": "T _fsync$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _getsgroups_np", - "type": "CPP" - }, - { - "name": "T _getwgroups_np", - "type": "CPP" - }, - { - "name": "T ___guarded_open_dprotected_np", - "type": "CPP" - }, - { - "name": "T ___identitysvc", - "type": "CPP" - }, - { - "name": "T ___kdebug_trace", - "type": "CPP" - }, - { - "name": "T ___kdebug_trace_string", - "type": "CPP" - }, - { - "name": "T ___log_data", - "type": "CPP" - }, - { - "name": "T ___lstat_extended", - "type": "CPP" - }, - { - "name": "T ___sandbox_me", - "type": "CPP" - }, - { - "name": "T ___mac_get_fd", - "type": "CPP" - }, - { - "name": "T ___mac_get_file", - "type": "CPP" - }, - { - "name": "T ___mac_get_link", - "type": "CPP" - }, - { - "name": "T ___mac_get_mount", - "type": "CPP" - }, - { - "name": "T ___mac_get_pid", - "type": "CPP" - }, - { - "name": "T ___mac_get_proc", - "type": "CPP" - }, - { - "name": "T ___mac_getfsstat", - "type": "CPP" - }, - { - "name": "T ___sandbox_mm", - "type": "CPP" - }, - { - "name": "T ___mac_set_fd", - "type": "CPP" - }, - { - "name": "T ___mac_set_file", - "type": "CPP" - }, - { - "name": "T ___mac_set_link", - "type": "CPP" - }, - { - "name": "T ___mach_bridge_remote_time", - "type": "CPP" - }, - { - "name": "T ___mach_eventlink_signal", - "type": "CPP" - }, - { - "name": "T ___mach_eventlink_signal_wait_until", - "type": "CPP" - }, - { - "name": "T ___mach_eventlink_wait_until", - "type": "CPP" - }, - { - "name": "T ___map_with_linking_np", - "type": "CPP" - }, - { - "name": "T ___memorystatus_available_memory", - "type": "CPP" - }, - { - "name": "T ___microstackshot", - "type": "CPP" - }, - { - "name": "T ___mkdir_extended", - "type": "CPP" - }, - { - "name": "T ___mkfifo_extended", - "type": "CPP" - }, - { - "name": "T _msgctl", - "type": "CPP" - }, - { - "name": "T _msgrcv$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _msgsnd$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___msgsys", - "type": "CPP" - }, - { - "name": "T _msync$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___nexus_create", - "type": "CPP" - }, - { - "name": "T ___nexus_deregister", - "type": "CPP" - }, - { - "name": "T ___nexus_destroy", - "type": "CPP" - }, - { - "name": "T ___nexus_get_opt", - "type": "CPP" - }, - { - "name": "T ___nexus_open", - "type": "CPP" - }, - { - "name": "T ___nexus_register", - "type": "CPP" - }, - { - "name": "T ___nexus_set_opt", - "type": "CPP" - }, - { - "name": "T ___openat_dprotected_np", - "type": "CPP" - }, - { - "name": "T _poll$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _pread$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _preadv$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___proc_info_extended_id", - "type": "CPP" - }, - { - "name": "T ___pselect_nocancel", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_downgrade", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_longrdlock", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_unlock2", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_upgrade", - "type": "CPP" - }, - { - "name": "T ___psynch_rw_yieldwrlock", - "type": "CPP" - }, - { - "name": "T ___pthread_markcancel", - "type": "CPP" - }, - { - "name": "T _pwrite$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _pwritev$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _readv$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___reboot", - "type": "CPP" - }, - { - "name": "T ___record_system_event", - "type": "CPP" - }, - { - "name": "T _recvmsg$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___renameat", - "type": "CPP" - }, - { - "name": "T ___renameatx_np", - "type": "CPP" - }, - { - "name": "T _sem_wait$NOCANCEL", - "type": "CPP" - }, - { - "name": "T ___semctl", - "type": "CPP" - }, - { - "name": "T ___semsys", - "type": "CPP" - }, - { - "name": "T _setregid", - "type": "CPP" - }, - { - "name": "T _setreuid", - "type": "CPP" - }, - { - "name": "T _setsgroups_np", - "type": "CPP" - }, - { - "name": "T ___settid_with_pid", - "type": "CPP" - }, - { - "name": "T ___settimeofday", - "type": "CPP" - }, - { - "name": "T _setwgroups_np", - "type": "CPP" - }, - { - "name": "T ___sfi_pidctl", - "type": "CPP" - }, - { - "name": "T ___shared_region_check_np", - "type": "CPP" - }, - { - "name": "T ___shared_region_map_and_slide_2_np", - "type": "CPP" - }, - { - "name": "T _shmctl", - "type": "CPP" - }, - { - "name": "T ___shmsys", - "type": "CPP" - }, - { - "name": "T ___sigsuspend", - "type": "CPP" - }, - { - "name": "T ___stack_snapshot_with_config", - "type": "CPP" - }, - { - "name": "T ___stat_extended", - "type": "CPP" - }, - { - "name": "T ___telemetry", - "type": "CPP" - }, - { - "name": "T ___thread_selfusage", - "type": "CPP" - }, - { - "name": "T ___ulock_wait2", - "type": "CPP" - }, - { - "name": "T ___umask_extended", - "type": "CPP" - }, - { - "name": "T ___vfork", - "type": "CPP" - }, - { - "name": "T _waitid$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _writev$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _acct", - "type": "CPP" - }, - { - "name": "T _adjtime", - "type": "CPP" - }, - { - "name": "T _aio_cancel", - "type": "CPP" - }, - { - "name": "T _aio_error", - "type": "CPP" - }, - { - "name": "T _aio_fsync", - "type": "CPP" - }, - { - "name": "T _aio_read", - "type": "CPP" - }, - { - "name": "T _aio_return", - "type": "CPP" - }, - { - "name": "T _aio_suspend", - "type": "CPP" - }, - { - "name": "T _aio_write", - "type": "CPP" - }, - { - "name": "T _audit", - "type": "CPP" - }, - { - "name": "T _auditctl", - "type": "CPP" - }, - { - "name": "T _chroot", - "type": "CPP" - }, - { - "name": "T _disconnectx", - "type": "CPP" - }, - { - "name": "T _faccessat", - "type": "CPP" - }, - { - "name": "T _fchdir", - "type": "CPP" - }, - { - "name": "T _fchmodat", - "type": "CPP" - }, - { - "name": "T _fchownat", - "type": "CPP" - }, - { - "name": "T _fclonefileat", - "type": "CPP" - }, - { - "name": "T _fdatasync", - "type": "CPP" - }, - { - "name": "T _fhopen", - "type": "CPP" - }, - { - "name": "T _fmount", - "type": "CPP" - }, - { - "name": "T _fpathconf", - "type": "CPP" - }, - { - "name": "T _freadlink", - "type": "CPP" - }, - { - "name": "T _fremovexattr", - "type": "CPP" - }, - { - "name": "T _fsgetpath_ext", - "type": "CPP" - }, - { - "name": "T ___fstat", - "type": "CPP" - }, - { - "name": "T _fstat64", - "type": "CPP" - }, - { - "name": "T ___fstatat", - "type": "CPP" - }, - { - "name": "T _fstatat64", - "type": "CPP" - }, - { - "name": "T ___fstatfs", - "type": "CPP" - }, - { - "name": "T _getattrlistat", - "type": "CPP" - }, - { - "name": "T _getauid", - "type": "CPP" - }, - { - "name": "T _getdirentries", - "type": "CPP" - }, - { - "name": "T _getdirentriesattr", - "type": "CPP" - }, - { - "name": "T _getfh", - "type": "CPP" - }, - { - "name": "T ___getfsstat", - "type": "CPP" - }, - { - "name": "T _getfsstat64", - "type": "CPP" - }, - { - "name": "T _getitimer", - "type": "CPP" - }, - { - "name": "T _getsid", - "type": "CPP" - }, - { - "name": "T _grab_pgo_data", - "type": "CPP" - }, - { - "name": "T _graftdmg", - "type": "CPP" - }, - { - "name": "T _guarded_writev_np", - "type": "CPP" - }, - { - "name": "T _kas_info", - "type": "CPP" - }, - { - "name": "T _ledger", - "type": "CPP" - }, - { - "name": "T _linkat", - "type": "CPP" - }, - { - "name": "T _lio_listio", - "type": "CPP" - }, - { - "name": "T ___lstat", - "type": "CPP" - }, - { - "name": "T _memorystatus_get_level", - "type": "CPP" - }, - { - "name": "T _mincore", - "type": "CPP" - }, - { - "name": "T _minherit", - "type": "CPP" - }, - { - "name": "T _mkfifo", - "type": "CPP" - }, - { - "name": "T _mkfifoat", - "type": "CPP" - }, - { - "name": "T _mknod", - "type": "CPP" - }, - { - "name": "T _mknodat", - "type": "CPP" - }, - { - "name": "T _mlockall", - "type": "CPP" - }, - { - "name": "T _mremap_encrypted", - "type": "CPP" - }, - { - "name": "T _msgget", - "type": "CPP" - }, - { - "name": "T _msgrcv", - "type": "CPP" - }, - { - "name": "T _msgsnd", - "type": "CPP" - }, - { - "name": "T _munlockall", - "type": "CPP" - }, - { - "name": "T _necp_session_action", - "type": "CPP" - }, - { - "name": "T _necp_session_open", - "type": "CPP" - }, - { - "name": "T _net_qos_guideline", - "type": "CPP" - }, - { - "name": "T _netagent_trigger", - "type": "CPP" - }, - { - "name": "T _nfssvc", - "type": "CPP" - }, - { - "name": "T _ntp_adjtime", - "type": "CPP" - }, - { - "name": "T _ntp_gettime", - "type": "CPP" - }, - { - "name": "T _objc_bp_assist_cfg_np", - "type": "CPP" - }, - { - "name": "T _openbyid_np", - "type": "CPP" - }, - { - "name": "T _os_fault_with_payload", - "type": "CPP" - }, - { - "name": "T _panic_with_data", - "type": "CPP" - }, - { - "name": "T _peeloff", - "type": "CPP" - }, - { - "name": "T _pid_hibernate", - "type": "CPP" - }, - { - "name": "T _pid_resume", - "type": "CPP" - }, - { - "name": "T _pid_shutdown_sockets", - "type": "CPP" - }, - { - "name": "T _pid_suspend", - "type": "CPP" - }, - { - "name": "T _pivot_root", - "type": "CPP" - }, - { - "name": "T _preadv", - "type": "CPP" - }, - { - "name": "T _proc_trace_log", - "type": "CPP" - }, - { - "name": "T _proc_uuid_policy", - "type": "CPP" - }, - { - "name": "T _pwritev", - "type": "CPP" - }, - { - "name": "T _readlinkat", - "type": "CPP" - }, - { - "name": "T _readv", - "type": "CPP" - }, - { - "name": "T _recvmsg_x", - "type": "CPP" - }, - { - "name": "T _register_uexc_handler", - "type": "CPP" - }, - { - "name": "T _revoke", - "type": "CPP" - }, - { - "name": "T _searchfs", - "type": "CPP" - }, - { - "name": "T _sem_post", - "type": "CPP" - }, - { - "name": "T _sem_trywait", - "type": "CPP" - }, - { - "name": "T _sem_unlink", - "type": "CPP" - }, - { - "name": "T _sem_wait", - "type": "CPP" - }, - { - "name": "T _semget", - "type": "CPP" - }, - { - "name": "T _semop", - "type": "CPP" - }, - { - "name": "T _sendfile", - "type": "CPP" - }, - { - "name": "T _sendmsg_x", - "type": "CPP" - }, - { - "name": "T _setattrlistat", - "type": "CPP" - }, - { - "name": "T _setaudit_addr", - "type": "CPP" - }, - { - "name": "T _setauid", - "type": "CPP" - }, - { - "name": "T _setgroups", - "type": "CPP" - }, - { - "name": "T _setprivexec", - "type": "CPP" - }, - { - "name": "T _shm_unlink", - "type": "CPP" - }, - { - "name": "T _shmat", - "type": "CPP" - }, - { - "name": "T _shmdt", - "type": "CPP" - }, - { - "name": "T _shmget", - "type": "CPP" - }, - { - "name": "T _sigpending", - "type": "CPP" - }, - { - "name": "T _socket_delegate", - "type": "CPP" - }, - { - "name": "T ___stat", - "type": "CPP" - }, - { - "name": "T ___statfs", - "type": "CPP" - }, - { - "name": "T _statfs64", - "type": "CPP" - }, - { - "name": "T _swapon", - "type": "CPP" - }, - { - "name": "T _symlinkat", - "type": "CPP" - }, - { - "name": "T _sync", - "type": "CPP" - }, - { - "name": "T _system_override", - "type": "CPP" - }, - { - "name": "T _task_inspect_for_pid", - "type": "CPP" - }, - { - "name": "T _task_read_for_pid", - "type": "CPP" - }, - { - "name": "T _thread_selfcounts", - "type": "CPP" - }, - { - "name": "T _tracker_action", - "type": "CPP" - }, - { - "name": "T _truncate", - "type": "CPP" - }, - { - "name": "T _undelete", - "type": "CPP" - }, - { - "name": "T _ungraftdmg", - "type": "CPP" - }, - { - "name": "T _usrctl", - "type": "CPP" - }, - { - "name": "T _vfs_purge", - "type": "CPP" - }, - { - "name": "T _vm_pressure_monitor", - "type": "CPP" - }, - { - "name": "T _waitid", - "type": "CPP" - }, - { - "name": "T __thread_set_tsd_base", - "type": "CPP" - }, - { - "name": "t _bzero", - "type": "CPP" - }, - { - "name": "t _memmove", - "type": "CPP" - }, - { - "name": "t __libkernel_strlen", - "type": "CPP" - }, - { - "name": "T ___libkernel_init_late", - "type": "CPP" - }, - { - "name": "T ___libkernel_init_after_boot_tasks", - "type": "CPP" - }, - { - "name": "t __libkernel_strchr", - "type": "CPP" - }, - { - "name": "t __libkernel_bzero", - "type": "CPP" - }, - { - "name": "t __libkernel_memset", - "type": "CPP" - }, - { - "name": "t __libkernel_memmove", - "type": "CPP" - }, - { - "name": "t __system_version_compat_check_path_suffix", - "type": "CPP" - }, - { - "name": "t __system_version_compat_open_shim", - "type": "CPP" - }, - { - "name": "t __libkernel_strcpy", - "type": "CPP" - }, - { - "name": "t __posix_spawn_with_filter", - "type": "CPP" - }, - { - "name": "t __execve_with_filter", - "type": "CPP" - }, - { - "name": "t __libkernel_strlcpy", - "type": "CPP" - }, - { - "name": "T _mach_host_special_port_description", - "type": "CPP" - }, - { - "name": "T _mach_task_special_port_description", - "type": "CPP" - }, - { - "name": "T _mach_thread_special_port_description", - "type": "CPP" - }, - { - "name": "T _mach_host_special_port_for_id", - "type": "CPP" - }, - { - "name": "t _port_for_id_internal", - "type": "CPP" - }, - { - "name": "T _mach_task_special_port_for_id", - "type": "CPP" - }, - { - "name": "T _mach_thread_special_port_for_id", - "type": "CPP" - }, - { - "name": "T _pkt_subtype_assert_fail", - "type": "CPP" - }, - { - "name": "T _pkt_type_assert_fail", - "type": "CPP" - }, - { - "name": "T _os_packet_set_headroom", - "type": "CPP" - }, - { - "name": "T _os_packet_get_headroom", - "type": "CPP" - }, - { - "name": "T _os_packet_set_link_header_length", - "type": "CPP" - }, - { - "name": "T _os_packet_get_link_header_length", - "type": "CPP" - }, - { - "name": "T _os_packet_set_link_broadcast", - "type": "CPP" - }, - { - "name": "T _os_packet_get_link_broadcast", - "type": "CPP" - }, - { - "name": "T _os_packet_set_link_multicast", - "type": "CPP" - }, - { - "name": "T _os_packet_get_link_multicast", - "type": "CPP" - }, - { - "name": "T _os_packet_set_link_ethfcs", - "type": "CPP" - }, - { - "name": "T _os_packet_get_link_ethfcs", - "type": "CPP" - }, - { - "name": "T _os_packet_set_transport_traffic_background", - "type": "CPP" - }, - { - "name": "T _os_packet_get_transport_traffic_background", - "type": "CPP" - }, - { - "name": "T _os_packet_set_transport_traffic_realtime", - "type": "CPP" - }, - { - "name": "T _os_packet_get_transport_traffic_realtime", - "type": "CPP" - }, - { - "name": "T _os_packet_set_transport_retransmit", - "type": "CPP" - }, - { - "name": "T _os_packet_get_transport_retransmit", - "type": "CPP" - }, - { - "name": "T _os_packet_set_transport_last_packet", - "type": "CPP" - }, - { - "name": "T _os_packet_set_service_class", - "type": "CPP" - }, - { - "name": "T _os_packet_get_service_class", - "type": "CPP" - }, - { - "name": "T _os_packet_set_compression_generation_count", - "type": "CPP" - }, - { - "name": "T _os_packet_get_compression_generation_count", - "type": "CPP" - }, - { - "name": "T _os_packet_set_traffic_class", - "type": "CPP" - }, - { - "name": "T _os_packet_get_traffic_class", - "type": "CPP" - }, - { - "name": "T _os_packet_set_inet_checksum", - "type": "CPP" - }, - { - "name": "T _os_packet_add_inet_csum_flags", - "type": "CPP" - }, - { - "name": "T _os_packet_get_inet_checksum", - "type": "CPP" - }, - { - "name": "T _os_packet_get_flow_uuid", - "type": "CPP" - }, - { - "name": "T _os_packet_set_flow_uuid", - "type": "CPP" - }, - { - "name": "T _os_packet_clear_flow_uuid", - "type": "CPP" - }, - { - "name": "T _os_packet_set_group_start", - "type": "CPP" - }, - { - "name": "T _os_packet_get_group_start", - "type": "CPP" - }, - { - "name": "T _os_packet_set_group_end", - "type": "CPP" - }, - { - "name": "T _os_packet_get_group_end", - "type": "CPP" - }, - { - "name": "T _os_packet_get_expire_time", - "type": "CPP" - }, - { - "name": "T _os_packet_set_expire_time", - "type": "CPP" - }, - { - "name": "T _os_packet_get_expiry_action", - "type": "CPP" - }, - { - "name": "T _os_packet_set_expiry_action", - "type": "CPP" - }, - { - "name": "T _os_packet_get_token", - "type": "CPP" - }, - { - "name": "T _os_packet_set_token", - "type": "CPP" - }, - { - "name": "T _os_packet_get_packetid", - "type": "CPP" - }, - { - "name": "T _os_packet_set_packetid", - "type": "CPP" - }, - { - "name": "T _os_packet_set_vlan_tag", - "type": "CPP" - }, - { - "name": "T _os_packet_get_vlan_tag", - "type": "CPP" - }, - { - "name": "T _os_packet_get_vlan_id", - "type": "CPP" - }, - { - "name": "T _os_packet_get_vlan_priority", - "type": "CPP" - }, - { - "name": "T _os_packet_set_app_metadata", - "type": "CPP" - }, - { - "name": "T _os_packet_get_wake_flag", - "type": "CPP" - }, - { - "name": "T _os_packet_get_keep_alive", - "type": "CPP" - }, - { - "name": "T _os_packet_set_keep_alive", - "type": "CPP" - }, - { - "name": "T _os_packet_get_truncated", - "type": "CPP" - }, - { - "name": "T _os_packet_set_l4s_flag", - "type": "CPP" - }, - { - "name": "T _os_packet_get_data_length", - "type": "CPP" - }, - { - "name": "T _os_packet_get_buflet_count", - "type": "CPP" - }, - { - "name": "T _os_packet_get_next_buflet", - "type": "CPP" - }, - { - "name": "T _os_packet_get_segment_count", - "type": "CPP" - }, - { - "name": "T _os_packet_finalize", - "type": "CPP" - }, - { - "name": "T _os_packet_add_buflet", - "type": "CPP" - }, - { - "name": "T _os_packet_increment_use_count", - "type": "CPP" - }, - { - "name": "T _os_packet_decrement_use_count", - "type": "CPP" - }, - { - "name": "T _os_packet_get_aggregation_type", - "type": "CPP" - }, - { - "name": "T _os_packet_set_tx_timestamp", - "type": "CPP" - }, - { - "name": "T _os_inet_checksum", - "type": "CPP" - }, - { - "name": "T _os_copy_and_inet_checksum", - "type": "CPP" - }, - { - "name": "T _os_buflet_get_data_offset", - "type": "CPP" - }, - { - "name": "T _os_buflet_get_data_length", - "type": "CPP" - }, - { - "name": "T _os_buflet_set_data_offset", - "type": "CPP" - }, - { - "name": "T _os_buflet_set_data_length", - "type": "CPP" - }, - { - "name": "T _os_buflet_get_object_address", - "type": "CPP" - }, - { - "name": "T _os_buflet_get_object_limit", - "type": "CPP" - }, - { - "name": "T _os_buflet_get_data_address", - "type": "CPP" - }, - { - "name": "T _os_buflet_get_data_limit", - "type": "CPP" - }, - { - "name": "T _os_packet_get_trace_id", - "type": "CPP" - }, - { - "name": "T _os_packet_set_trace_id", - "type": "CPP" - }, - { - "name": "T _os_packet_trace_event", - "type": "CPP" - }, - { - "name": "T _os_packet_set_protocol_segment_size", - "type": "CPP" - }, - { - "name": "T _os_packet_set_tso_flags", - "type": "CPP" - }, - { - "name": "T _reboot", - "type": "CPP" - }, - { - "name": "T _reboot_np", - "type": "CPP" - }, - { - "name": "t __mach_continuous_time", - "type": "CPP" - }, - { - "name": "T _renameat", - "type": "CPP" - }, - { - "name": "t _internal_catch_exception_raise_state_identity", - "type": "CPP" - }, - { - "name": "t _internal_catch_exception_raise_state", - "type": "CPP" - }, - { - "name": "t _internal_catch_exception_raise", - "type": "CPP" - }, - { - "name": "t _fprintf_stderr", - "type": "CPP" - }, - { - "name": "T _guarded_open_dprotected_np", - "type": "CPP" - }, - { - "name": "T _host_get_atm_diagnostic_flag", - "type": "CPP" - }, - { - "name": "T _host_get_multiuser_config_flags", - "type": "CPP" - }, - { - "name": "T _host_check_multiuser_mode", - "type": "CPP" - }, - { - "name": "T _mach_error_type", - "type": "CPP" - }, - { - "name": "T _mach_error", - "type": "CPP" - }, - { - "name": "T _host_page_size", - "type": "CPP" - }, - { - "name": "T __mach_fork_child", - "type": "CPP" - }, - { - "name": "T _exclaves_endpoint_call", - "type": "CPP" - }, - { - "name": "T _exclaves_outbound_buffer_create", - "type": "CPP" - }, - { - "name": "T _exclaves_outbound_buffer_copyout", - "type": "CPP" - }, - { - "name": "T _exclaves_inbound_buffer_create", - "type": "CPP" - }, - { - "name": "T _exclaves_inbound_buffer_copyin", - "type": "CPP" - }, - { - "name": "T _exclaves_named_buffer_create", - "type": "CPP" - }, - { - "name": "T _exclaves_named_buffer_copyin", - "type": "CPP" - }, - { - "name": "T _exclaves_named_buffer_copyout", - "type": "CPP" - }, - { - "name": "T _exclaves_launch_conclave", - "type": "CPP" - }, - { - "name": "T _exclaves_lookup_service", - "type": "CPP" - }, - { - "name": "T _exclaves_boot", - "type": "CPP" - }, - { - "name": "T _exclaves_audio_buffer_create", - "type": "CPP" - }, - { - "name": "T _exclaves_audio_buffer_copyout", - "type": "CPP" - }, - { - "name": "T _exclaves_sensor_create", - "type": "CPP" - }, - { - "name": "T _exclaves_sensor_start", - "type": "CPP" - }, - { - "name": "T _exclaves_sensor_stop", - "type": "CPP" - }, - { - "name": "T _exclaves_sensor_status", - "type": "CPP" - }, - { - "name": "T _exclaves_notification_create", - "type": "CPP" - }, - { - "name": "T _mach_msg2_internal", - "type": "CPP" - }, - { - "name": "T _mach_msg_server_importance", - "type": "CPP" - }, - { - "name": "T _mach_msg_priority_is_pthread_priority", - "type": "CPP" - }, - { - "name": "T _mach_msg_priority_encode", - "type": "CPP" - }, - { - "name": "T _mach_msg_priority_overide_qos", - "type": "CPP" - }, - { - "name": "T _mach_msg_priority_qos", - "type": "CPP" - }, - { - "name": "T _mach_msg_priority_relpri", - "type": "CPP" - }, - { - "name": "T _mig_allocate", - "type": "CPP" - }, - { - "name": "T _quota", - "type": "CPP" - }, - { - "name": "T _setquota", - "type": "CPP" - }, - { - "name": "T _panic_init", - "type": "CPP" - }, - { - "name": "T _panic", - "type": "CPP" - }, - { - "name": "T _port_obj_init", - "type": "CPP" - }, - { - "name": "T _semaphore_signal_all", - "type": "CPP" - }, - { - "name": "T _semaphore_signal_thread", - "type": "CPP" - }, - { - "name": "T _semaphore_wait_signal", - "type": "CPP" - }, - { - "name": "T _semaphore_timedwait_signal", - "type": "CPP" - }, - { - "name": "T _msg_rpc", - "type": "CPP" - }, - { - "name": "T _msg_send", - "type": "CPP" - }, - { - "name": "T _msg_receive", - "type": "CPP" - }, - { - "name": "T _task_self_", - "type": "CPP" - }, - { - "name": "T _host_self", - "type": "CPP" - }, - { - "name": "T __mach_vsnprintf", - "type": "CPP" - }, - { - "name": "T __mach_snprintf", - "type": "CPP" - }, - { - "name": "T _pselect$DARWIN_EXTSN$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _mach_task_self", - "type": "CPP" - }, - { - "name": "T _mach_right_recv_construct", - "type": "CPP" - }, - { - "name": "T _mach_right_recv_destruct", - "type": "CPP" - }, - { - "name": "T _mach_right_send_create", - "type": "CPP" - }, - { - "name": "T _mach_right_send_retain", - "type": "CPP" - }, - { - "name": "T _mach_right_send_once_create", - "type": "CPP" - }, - { - "name": "T _mach_right_send_once_consume", - "type": "CPP" - }, - { - "name": "T _os_proc_available_memory", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_ringbuffer_init", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_mark_free", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_mark_used", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_update_kernel_accounting", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_is_available", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_is_reclaimed", - "type": "CPP" - }, - { - "name": "T _mach_vm_reclaim_synchronize", - "type": "CPP" - }, - { - "name": "T _proc_listallpids", - "type": "CPP" - }, - { - "name": "T _proc_listpgrppids", - "type": "CPP" - }, - { - "name": "T _proc_listchildpids", - "type": "CPP" - }, - { - "name": "T _proc_listcoalitions", - "type": "CPP" - }, - { - "name": "T _proc_setthread_cpupercent", - "type": "CPP" - }, - { - "name": "T _proc_pidfdinfo", - "type": "CPP" - }, - { - "name": "T _proc_pidfileportinfo", - "type": "CPP" - }, - { - "name": "T _proc_piddynkqueueinfo", - "type": "CPP" - }, - { - "name": "T _proc_udata_info", - "type": "CPP" - }, - { - "name": "T _proc_regionfilename", - "type": "CPP" - }, - { - "name": "T _proc_kmsgbuf", - "type": "CPP" - }, - { - "name": "T _proc_pidpath_audittoken", - "type": "CPP" - }, - { - "name": "T _proc_current_thread_schedinfo", - "type": "CPP" - }, - { - "name": "T _proc_libversion", - "type": "CPP" - }, - { - "name": "T _proc_get_dirty", - "type": "CPP" - }, - { - "name": "T _proc_clear_dirty", - "type": "CPP" - }, - { - "name": "T _proc_terminate", - "type": "CPP" - }, - { - "name": "T _proc_signal_with_audittoken", - "type": "CPP" - }, - { - "name": "T _proc_terminate_with_audittoken", - "type": "CPP" - }, - { - "name": "T _proc_terminate_all_rsr", - "type": "CPP" - }, - { - "name": "T _proc_resume_cpumon", - "type": "CPP" - }, - { - "name": "T _proc_set_cpumon_params_fatal", - "type": "CPP" - }, - { - "name": "T _proc_set_wakemon_params", - "type": "CPP" - }, - { - "name": "T _proc_get_wakemon_params", - "type": "CPP" - }, - { - "name": "T _proc_list_uptrs", - "type": "CPP" - }, - { - "name": "T _proc_list_dynkqueueids", - "type": "CPP" - }, - { - "name": "T _proc_setcpu_percentage", - "type": "CPP" - }, - { - "name": "T _proc_reset_footprint_interval", - "type": "CPP" - }, - { - "name": "T _proc_clear_cpulimits", - "type": "CPP" - }, - { - "name": "T _proc_donate_importance_boost", - "type": "CPP" - }, - { - "name": "T _proc_clear_vmpressure", - "type": "CPP" - }, - { - "name": "T _proc_set_owner_vmpressure", - "type": "CPP" - }, - { - "name": "T _proc_set_delayidlesleep", - "type": "CPP" - }, - { - "name": "T _proc_clear_delayidlesleep", - "type": "CPP" - }, - { - "name": "T _proc_disable_apptype", - "type": "CPP" - }, - { - "name": "T _proc_enable_apptype", - "type": "CPP" - }, - { - "name": "T _proc_suppress", - "type": "CPP" - }, - { - "name": "T _proc_set_no_smt", - "type": "CPP" - }, - { - "name": "T _proc_setthread_no_smt", - "type": "CPP" - }, - { - "name": "T _proc_set_csm", - "type": "CPP" - }, - { - "name": "T _proc_setthread_csm", - "type": "CPP" - }, - { - "name": "T __getprivatesystemidentifier", - "type": "CPP" - }, - { - "name": "T __register_gethostuuid_callback", - "type": "CPP" - }, - { - "name": "T _mach_boottime_usec", - "type": "CPP" - }, - { - "name": "T _mach_task_is_self", - "type": "CPP" - }, - { - "name": "T _nfsclnt", - "type": "CPP" - }, - { - "name": "T _open$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _openat$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_signal", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_wait_until", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_signal_wait_until", - "type": "CPP" - }, - { - "name": "T _futimens", - "type": "CPP" - }, - { - "name": "t _prepare_times_array_and_attrs", - "type": "CPP" - }, - { - "name": "T _utimensat", - "type": "CPP" - }, - { - "name": "T _thread_set_policy", - "type": "CPP" - }, - { - "name": "T _thread_get_register_pointer_values", - "type": "CPP" - }, - { - "name": "T _renameatx_np", - "type": "CPP" - }, - { - "name": "T _renamex_np", - "type": "CPP" - }, - { - "name": "T _rename_ext", - "type": "CPP" - }, - { - "name": "T _log_data_as_kernel", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getflags", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getsigdefault", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getpgroup", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getsigmask", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getbinpref_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getarchpref_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getpcontrol_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getprocesstype_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setpgroup", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setarchpref_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setpcontrol_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setprocesstype_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setdataless_iopolicy_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_use_sec_transition_shims_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_subsystem_root_path_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_platform_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_disable_ptr_auth_a_keys_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_alt_rosetta_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_crash_behavior_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_crash_behavior_deadline_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_crash_count_np", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_add_fileportdup2_np", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_addchdir_np", - "type": "CPP" - }, - { - "name": "T _posix_spawn_file_actions_addfchdir_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setcpumonitor", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_getcpumonitor", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_threadlimit_ext", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_importancewatch_port_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_registered_ports_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_ptrauth_task_port_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setcoalition_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_qos_clamp_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_get_qos_clamp_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_darwin_role_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_get_darwin_role_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_persona_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_persona_uid_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_persona_gid_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_persona_groups_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_max_addr_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_setnosmt_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_csm_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_uid_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_gid_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_groups_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_login_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_conclave_id_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_portlimits_ext", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_filedesclimit_ext", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_kqworklooplimit_ext", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_jetsam_ttr_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_launch_type_np", - "type": "CPP" - }, - { - "name": "T _stackshot_config_create", - "type": "CPP" - }, - { - "name": "T _stackshot_config_set_pid", - "type": "CPP" - }, - { - "name": "T _stackshot_config_set_flags", - "type": "CPP" - }, - { - "name": "T _stackshot_capture_with_config", - "type": "CPP" - }, - { - "name": "T _stackshot_config_get_stackshot_buffer", - "type": "CPP" - }, - { - "name": "T _stackshot_config_get_stackshot_size", - "type": "CPP" - }, - { - "name": "T _stackshot_config_set_size_hint", - "type": "CPP" - }, - { - "name": "T _stackshot_config_set_delta_timestamp", - "type": "CPP" - }, - { - "name": "T _stackshot_config_set_pagetable_mask", - "type": "CPP" - }, - { - "name": "T _stackshot_config_dealloc_buffer", - "type": "CPP" - }, - { - "name": "T _stackshot_config_dealloc", - "type": "CPP" - }, - { - "name": "T ___darwin_check_fd_set_overflow", - "type": "CPP" - }, - { - "name": "T _terminate_with_payload", - "type": "CPP" - }, - { - "name": "T _system_get_sfi_window", - "type": "CPP" - }, - { - "name": "T _sfi_get_class_offtime", - "type": "CPP" - }, - { - "name": "T _sfi_process_set_flags", - "type": "CPP" - }, - { - "name": "T _sfi_process_get_flags", - "type": "CPP" - }, - { - "name": "T _os_channel_create_extended", - "type": "CPP" - }, - { - "name": "t _os_channel_info2attr", - "type": "CPP" - }, - { - "name": "t _os_channel_init_ring", - "type": "CPP" - }, - { - "name": "T _os_channel_create", - "type": "CPP" - }, - { - "name": "T _os_channel_get_fd", - "type": "CPP" - }, - { - "name": "T _os_channel_read_attr", - "type": "CPP" - }, - { - "name": "T _os_channel_write_attr", - "type": "CPP" - }, - { - "name": "T _os_channel_read_nexus_extension_info", - "type": "CPP" - }, - { - "name": "T _os_channel_sync", - "type": "CPP" - }, - { - "name": "T _os_channel_destroy", - "type": "CPP" - }, - { - "name": "T _os_channel_is_defunct", - "type": "CPP" - }, - { - "name": "T _os_channel_ring_id", - "type": "CPP" - }, - { - "name": "T _os_channel_tx_ring", - "type": "CPP" - }, - { - "name": "T _os_channel_rx_ring", - "type": "CPP" - }, - { - "name": "T _os_channel_pending", - "type": "CPP" - }, - { - "name": "T _os_channel_ring_sync_time", - "type": "CPP" - }, - { - "name": "T _os_channel_ring_notify_time", - "type": "CPP" - }, - { - "name": "T _os_channel_available_slot_count", - "type": "CPP" - }, - { - "name": "T _os_channel_advance_slot", - "type": "CPP" - }, - { - "name": "T _os_channel_get_next_slot", - "type": "CPP" - }, - { - "name": "T _os_channel_set_slot_properties", - "type": "CPP" - }, - { - "name": "T _os_channel_slot_get_packet", - "type": "CPP" - }, - { - "name": "T _os_channel_get_stats_region", - "type": "CPP" - }, - { - "name": "T _os_channel_get_advisory_region", - "type": "CPP" - }, - { - "name": "T _os_channel_flow_admissible", - "type": "CPP" - }, - { - "name": "T _os_channel_flow_adv_get_ce_count", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_create", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_clone", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_set_key", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_destroy", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_set", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_get", - "type": "CPP" - }, - { - "name": "T _os_channel_attr_get_key", - "type": "CPP" - }, - { - "name": "T _os_channel_packet_alloc", - "type": "CPP" - }, - { - "name": "t _os_channel_packet_alloc_common", - "type": "CPP" - }, - { - "name": "T _os_channel_large_packet_alloc", - "type": "CPP" - }, - { - "name": "T _os_channel_packet_free", - "type": "CPP" - }, - { - "name": "T _os_channel_slot_attach_packet", - "type": "CPP" - }, - { - "name": "T _os_channel_slot_detach_packet", - "type": "CPP" - }, - { - "name": "T _os_channel_packet_pool_purge", - "type": "CPP" - }, - { - "name": "t _os_channel_purge_packet_alloc_ring_common", - "type": "CPP" - }, - { - "name": "T _os_channel_buflet_free", - "type": "CPP" - }, - { - "name": "T _os_channel_get_next_event_handle", - "type": "CPP" - }, - { - "name": "T _os_channel_event_free", - "type": "CPP" - }, - { - "name": "T _os_channel_get_interface_advisory", - "type": "CPP" - }, - { - "name": "T _os_channel_configure_interface_advisory", - "type": "CPP" - }, - { - "name": "T _os_channel_buflet_alloc", - "type": "CPP" - }, - { - "name": "T _sem_destroy", - "type": "CPP" - }, - { - "name": "T _sem_getvalue", - "type": "CPP" - }, - { - "name": "T _sem_init", - "type": "CPP" - }, - { - "name": "T _pid_shutdown_networking", - "type": "CPP" - }, - { - "name": "T _coalition_create", - "type": "CPP" - }, - { - "name": "T _coalition_terminate", - "type": "CPP" - }, - { - "name": "T _coalition_reap", - "type": "CPP" - }, - { - "name": "T _coalition_info_resource_usage", - "type": "CPP" - }, - { - "name": "T _coalition_info_debug_info", - "type": "CPP" - }, - { - "name": "T _coalition_info_set_name", - "type": "CPP" - }, - { - "name": "T _coalition_info_set_efficiency", - "type": "CPP" - }, - { - "name": "T _coalition_ledger_set_logical_writes_limit", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_create", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_delete", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_rename", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_revert", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_root", - "type": "CPP" - }, - { - "name": "T _fs_snapshot_mount", - "type": "CPP" - }, - { - "name": "T _debug_syscall_reject_config", - "type": "CPP" - }, - { - "name": "T _debug_syscall_reject", - "type": "CPP" - }, - { - "name": "T _kdebug_using_continuous_time", - "type": "CPP" - }, - { - "name": "T _kdebug_timestamp", - "type": "CPP" - }, - { - "name": "T _kdebug_timestamp_from_absolute", - "type": "CPP" - }, - { - "name": "T _kdebug_timestamp_from_continuous", - "type": "CPP" - }, - { - "name": "T _kdebug_signpost", - "type": "CPP" - }, - { - "name": "T _record_system_event_as_kernel", - "type": "CPP" - }, - { - "name": "T _pselect", - "type": "CPP" - }, - { - "name": "T _pselect$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _os_nexus_attr_create", - "type": "CPP" - }, - { - "name": "T _os_nexus_attr_clone", - "type": "CPP" - }, - { - "name": "T _os_nexus_attr_set", - "type": "CPP" - }, - { - "name": "T _os_nexus_attr_get", - "type": "CPP" - }, - { - "name": "T _os_nexus_attr_destroy", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_create", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_get_fd", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_register_provider", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_deregister_provider", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_alloc_provider_instance", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_free_provider_instance", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_bind_provider_instance", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_unbind_provider_instance", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_read_provider_attr", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_add_traffic_rule", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_remove_traffic_rule", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_iterate_traffic_rules", - "type": "CPP" - }, - { - "name": "T _os_nexus_controller_destroy", - "type": "CPP" - }, - { - "name": "T ___os_nexus_ifattach", - "type": "CPP" - }, - { - "name": "T ___os_nexus_ifdetach", - "type": "CPP" - }, - { - "name": "T ___os_nexus_flow_add", - "type": "CPP" - }, - { - "name": "T ___os_nexus_flow_del", - "type": "CPP" - }, - { - "name": "T _os_nexus_flow_set_wake_from_sleep", - "type": "CPP" - }, - { - "name": "T ___os_nexus_get_llink_info", - "type": "CPP" - }, - { - "name": "T _sigsuspend", - "type": "CPP" - }, - { - "name": "T _openat", - "type": "CPP" - }, - { - "name": "T _work_interval_get_flags_from_port", - "type": "CPP" - }, - { - "name": "T _work_interval_notify", - "type": "CPP" - }, - { - "name": "T _work_interval_notify_simple", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_clear", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_free", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_set_start", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_set_deadline", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_set_finish", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_set_complexity", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_get_start", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_get_deadline", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_get_finish", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_get_complexity", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_get_telemetry_data", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_start", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_update", - "type": "CPP" - }, - { - "name": "T _work_interval_instance_finish", - "type": "CPP" - }, - { - "name": "T _work_interval_destroy", - "type": "CPP" - }, - { - "name": "T _work_interval_join", - "type": "CPP" - }, - { - "name": "T _work_interval_join_port", - "type": "CPP" - }, - { - "name": "T _work_interval_leave", - "type": "CPP" - }, - { - "name": "T _work_interval_copy_port", - "type": "CPP" - }, - { - "name": "T _os_cpu_in_cksum", - "type": "CPP" - }, - { - "name": "T _openat_dprotected_np", - "type": "CPP" - }, - { - "name": "T _openat_authenticated_np", - "type": "CPP" - }, - { - "name": "T _proc_listpidspath", - "type": "CPP" - }, - { - "name": "T _os_channel_event_get_next_event", - "type": "CPP" - }, - { - "name": "T _os_channel_event_get_event_data", - "type": "CPP" - }, - { - "name": "T _mach_port_names", - "type": "CPP" - }, - { - "name": "T _mach_port_rename", - "type": "CPP" - }, - { - "name": "T _mach_port_allocate_name", - "type": "CPP" - }, - { - "name": "T _mach_port_peek", - "type": "CPP" - }, - { - "name": "T _mach_port_set_mscount", - "type": "CPP" - }, - { - "name": "T _mach_port_set_seqno", - "type": "CPP" - }, - { - "name": "T _mach_port_allocate_qos", - "type": "CPP" - }, - { - "name": "T _mach_port_allocate_full", - "type": "CPP" - }, - { - "name": "T _task_set_port_space", - "type": "CPP" - }, - { - "name": "T _mach_port_get_srights", - "type": "CPP" - }, - { - "name": "T _mach_port_space_info", - "type": "CPP" - }, - { - "name": "T _mach_port_space_basic_info", - "type": "CPP" - }, - { - "name": "T _mig_dealloc_special_reply_port", - "type": "CPP" - }, - { - "name": "T _mach_sync_ipc_link_monitoring_start", - "type": "CPP" - }, - { - "name": "T _mach_sync_ipc_link_monitoring_stop", - "type": "CPP" - }, - { - "name": "T _mach_port_dnrequest_info", - "type": "CPP" - }, - { - "name": "T _mach_port_kernel_object", - "type": "CPP" - }, - { - "name": "T _mach_port_kobject", - "type": "CPP" - }, - { - "name": "T _mach_port_kobject_description", - "type": "CPP" - }, - { - "name": "T _mach_port_unguard", - "type": "CPP" - }, - { - "name": "T _mach_port_guard_with_flags", - "type": "CPP" - }, - { - "name": "T _mach_port_swap_guard", - "type": "CPP" - }, - { - "name": "T _mach_port_is_connection_for_service", - "type": "CPP" - }, - { - "name": "T _mach_port_get_service_port_info", - "type": "CPP" - }, - { - "name": "T _mach_port_assert_attributes", - "type": "CPP" - }, - { - "name": "T _mach_vm_remap", - "type": "CPP" - }, - { - "name": "T _mach_vm_remap_new", - "type": "CPP" - }, - { - "name": "T _mach_vm_read", - "type": "CPP" - }, - { - "name": "T _vm_remap_new", - "type": "CPP" - }, - { - "name": "T _getaudit", - "type": "CPP" - }, - { - "name": "T _setaudit", - "type": "CPP" - }, - { - "name": "T _kpersona_alloc", - "type": "CPP" - }, - { - "name": "T _kpersona_palloc", - "type": "CPP" - }, - { - "name": "T _kpersona_dealloc", - "type": "CPP" - }, - { - "name": "T _kpersona_getpath", - "type": "CPP" - }, - { - "name": "T _kpersona_pidinfo", - "type": "CPP" - }, - { - "name": "T _kpersona_find", - "type": "CPP" - }, - { - "name": "T _kpersona_find_by_type", - "type": "CPP" - }, - { - "name": "T _clock_set_time", - "type": "CPP" - }, - { - "name": "T _clock_set_attributes", - "type": "CPP" - }, - { - "name": "T _clock_alarm_reply", - "type": "CPP" - }, - { - "name": "T _clock_get_attributes", - "type": "CPP" - }, - { - "name": "T _clock_alarm", - "type": "CPP" - }, - { - "name": "T _exception_raise", - "type": "CPP" - }, - { - "name": "T _exception_raise_state", - "type": "CPP" - }, - { - "name": "T _exception_raise_state_identity", - "type": "CPP" - }, - { - "name": "T _exc_server_routine", - "type": "CPP" - }, - { - "name": "t __Xexception_raise", - "type": "CPP" - }, - { - "name": "t __Xexception_raise_state", - "type": "CPP" - }, - { - "name": "t __Xexception_raise_state_identity", - "type": "CPP" - }, - { - "name": "T _exc_server", - "type": "CPP" - }, - { - "name": "T _host_get_boot_info", - "type": "CPP" - }, - { - "name": "T _host_reboot", - "type": "CPP" - }, - { - "name": "T _host_priv_statistics", - "type": "CPP" - }, - { - "name": "T _host_default_memory_manager", - "type": "CPP" - }, - { - "name": "T _vm_wire", - "type": "CPP" - }, - { - "name": "T _thread_wire", - "type": "CPP" - }, - { - "name": "T _vm_allocate_cpm", - "type": "CPP" - }, - { - "name": "T _host_processors", - "type": "CPP" - }, - { - "name": "T _host_get_clock_control", - "type": "CPP" - }, - { - "name": "T _kmod_create", - "type": "CPP" - }, - { - "name": "T _kmod_destroy", - "type": "CPP" - }, - { - "name": "T _kmod_control", - "type": "CPP" - }, - { - "name": "T _host_set_special_port", - "type": "CPP" - }, - { - "name": "T _host_set_exception_ports", - "type": "CPP" - }, - { - "name": "T _host_get_exception_ports", - "type": "CPP" - }, - { - "name": "T _host_swap_exception_ports", - "type": "CPP" - }, - { - "name": "T _mach_vm_wire", - "type": "CPP" - }, - { - "name": "T _host_processor_sets", - "type": "CPP" - }, - { - "name": "T _host_processor_set_priv", - "type": "CPP" - }, - { - "name": "T _host_set_UNDServer", - "type": "CPP" - }, - { - "name": "T _host_get_UNDServer", - "type": "CPP" - }, - { - "name": "T _kext_request", - "type": "CPP" - }, - { - "name": "T _host_security_create_task_token", - "type": "CPP" - }, - { - "name": "T _host_security_set_task_token", - "type": "CPP" - }, - { - "name": "T _host_kernel_version", - "type": "CPP" - }, - { - "name": "T __host_page_size", - "type": "CPP" - }, - { - "name": "T _mach_memory_object_memory_entry", - "type": "CPP" - }, - { - "name": "T _host_processor_info", - "type": "CPP" - }, - { - "name": "T _host_get_io_main", - "type": "CPP" - }, - { - "name": "T _kmod_get_info", - "type": "CPP" - }, - { - "name": "T _host_virtual_physical_table_info", - "type": "CPP" - }, - { - "name": "T _processor_set_default", - "type": "CPP" - }, - { - "name": "T _processor_set_create", - "type": "CPP" - }, - { - "name": "T _mach_memory_object_memory_entry_64", - "type": "CPP" - }, - { - "name": "T _host_lockgroup_info", - "type": "CPP" - }, - { - "name": "T _mach_zone_info", - "type": "CPP" - }, - { - "name": "T _mach_zone_force_gc", - "type": "CPP" - }, - { - "name": "T __kernelrpc_host_create_mach_voucher", - "type": "CPP" - }, - { - "name": "T _host_register_mach_voucher_attr_manager", - "type": "CPP" - }, - { - "name": "T _host_register_well_known_mach_voucher_attr_manager", - "type": "CPP" - }, - { - "name": "T _host_set_atm_diagnostic_flag", - "type": "CPP" - }, - { - "name": "T _mach_memory_info", - "type": "CPP" - }, - { - "name": "T _host_set_multiuser_config_flags", - "type": "CPP" - }, - { - "name": "T _mach_zone_info_for_zone", - "type": "CPP" - }, - { - "name": "T _mach_zone_info_for_largest_zone", - "type": "CPP" - }, - { - "name": "T _mach_zone_get_zlog_zones", - "type": "CPP" - }, - { - "name": "T _mach_zone_get_btlog_records", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_names", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_rename", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_allocate_name", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_allocate", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_destroy", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_deallocate", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_mod_refs", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_peek", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_set_mscount", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_move_member", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_insert_right", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_set_seqno", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_allocate_qos", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_allocate_full", - "type": "CPP" - }, - { - "name": "T __kernelrpc_task_set_port_space", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_srights", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_space_info", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_dnrequest_info", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_kernel_object", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_insert_member", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_extract_member", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_kobject", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_construct", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_destruct", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_guard", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_unguard", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_space_basic_info", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_special_reply_port_reset_link", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_guard_with_flags", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_swap_guard", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_kobject_description", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_is_connection_for_service", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_get_service_port_info", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_port_assert_attributes", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_allocate", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_deallocate", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_protect", - "type": "CPP" - }, - { - "name": "T _mach_vm_inherit", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_read", - "type": "CPP" - }, - { - "name": "T _mach_vm_read_list", - "type": "CPP" - }, - { - "name": "T _mach_vm_write", - "type": "CPP" - }, - { - "name": "T _mach_vm_msync", - "type": "CPP" - }, - { - "name": "T _mach_vm_behavior_set", - "type": "CPP" - }, - { - "name": "T _mach_vm_machine_attribute", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_remap", - "type": "CPP" - }, - { - "name": "T _mach_vm_page_query", - "type": "CPP" - }, - { - "name": "T _mach_make_memory_entry", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_purgable_control", - "type": "CPP" - }, - { - "name": "T _mach_vm_page_info", - "type": "CPP" - }, - { - "name": "T _mach_vm_page_range_query", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_vm_remap_new", - "type": "CPP" - }, - { - "name": "T _mach_vm_deferred_reclamation_buffer_init", - "type": "CPP" - }, - { - "name": "T _mach_vm_deferred_reclamation_buffer_synchronize", - "type": "CPP" - }, - { - "name": "T _mach_vm_deferred_reclamation_buffer_update_reclaimable_bytes", - "type": "CPP" - }, - { - "name": "T _mach_vm_range_create", - "type": "CPP" - }, - { - "name": "T _mach_notify_port_deleted", - "type": "CPP" - }, - { - "name": "T _mach_notify_port_destroyed", - "type": "CPP" - }, - { - "name": "T _mach_notify_no_senders", - "type": "CPP" - }, - { - "name": "T _mach_notify_send_once", - "type": "CPP" - }, - { - "name": "T _mach_notify_dead_name", - "type": "CPP" - }, - { - "name": "T _processor_set_statistics", - "type": "CPP" - }, - { - "name": "T _processor_set_destroy", - "type": "CPP" - }, - { - "name": "T _processor_set_max_priority", - "type": "CPP" - }, - { - "name": "T _processor_set_policy_enable", - "type": "CPP" - }, - { - "name": "T _processor_set_policy_disable", - "type": "CPP" - }, - { - "name": "T _processor_set_tasks", - "type": "CPP" - }, - { - "name": "T _processor_set_threads", - "type": "CPP" - }, - { - "name": "T _processor_set_policy_control", - "type": "CPP" - }, - { - "name": "T _processor_set_stack_usage", - "type": "CPP" - }, - { - "name": "T _processor_set_info", - "type": "CPP" - }, - { - "name": "T _processor_set_tasks_with_flavor", - "type": "CPP" - }, - { - "name": "T _processor_start", - "type": "CPP" - }, - { - "name": "T _processor_exit", - "type": "CPP" - }, - { - "name": "T _processor_info", - "type": "CPP" - }, - { - "name": "T _processor_control", - "type": "CPP" - }, - { - "name": "T _processor_assign", - "type": "CPP" - }, - { - "name": "T _processor_get_assignment", - "type": "CPP" - }, - { - "name": "T _netname_check_in", - "type": "CPP" - }, - { - "name": "T _netname_look_up", - "type": "CPP" - }, - { - "name": "T _netname_check_out", - "type": "CPP" - }, - { - "name": "T _netname_version", - "type": "CPP" - }, - { - "name": "T _task_create", - "type": "CPP" - }, - { - "name": "T _task_terminate", - "type": "CPP" - }, - { - "name": "T _task_suspend", - "type": "CPP" - }, - { - "name": "T _task_resume", - "type": "CPP" - }, - { - "name": "T _thread_create", - "type": "CPP" - }, - { - "name": "T _thread_create_running", - "type": "CPP" - }, - { - "name": "T _task_swap_exception_ports", - "type": "CPP" - }, - { - "name": "T _lock_set_create", - "type": "CPP" - }, - { - "name": "T _lock_set_destroy", - "type": "CPP" - }, - { - "name": "T _task_policy_get", - "type": "CPP" - }, - { - "name": "T _task_sample", - "type": "CPP" - }, - { - "name": "T _task_policy", - "type": "CPP" - }, - { - "name": "T _task_set_emulation", - "type": "CPP" - }, - { - "name": "T _task_get_emulation_vector", - "type": "CPP" - }, - { - "name": "T _task_set_emulation_vector", - "type": "CPP" - }, - { - "name": "T _task_set_ras_pc", - "type": "CPP" - }, - { - "name": "T _task_zone_info", - "type": "CPP" - }, - { - "name": "T _task_assign", - "type": "CPP" - }, - { - "name": "T _task_assign_default", - "type": "CPP" - }, - { - "name": "T _task_get_assignment", - "type": "CPP" - }, - { - "name": "T _task_set_policy", - "type": "CPP" - }, - { - "name": "T _task_get_state", - "type": "CPP" - }, - { - "name": "T _task_set_state", - "type": "CPP" - }, - { - "name": "T _task_set_phys_footprint_limit", - "type": "CPP" - }, - { - "name": "T _task_suspend2", - "type": "CPP" - }, - { - "name": "T _task_resume2", - "type": "CPP" - }, - { - "name": "T _task_purgable_info", - "type": "CPP" - }, - { - "name": "T _task_get_mach_voucher", - "type": "CPP" - }, - { - "name": "T _task_set_mach_voucher", - "type": "CPP" - }, - { - "name": "T _task_swap_mach_voucher", - "type": "CPP" - }, - { - "name": "T _task_generate_corpse", - "type": "CPP" - }, - { - "name": "T _task_map_corpse_info", - "type": "CPP" - }, - { - "name": "T _task_register_dyld_image_infos", - "type": "CPP" - }, - { - "name": "T _task_unregister_dyld_image_infos", - "type": "CPP" - }, - { - "name": "T _task_get_dyld_image_infos", - "type": "CPP" - }, - { - "name": "T _task_register_dyld_shared_cache_image_info", - "type": "CPP" - }, - { - "name": "T _task_register_dyld_set_dyld_state", - "type": "CPP" - }, - { - "name": "T _task_register_dyld_get_process_state", - "type": "CPP" - }, - { - "name": "T _task_map_corpse_info_64", - "type": "CPP" - }, - { - "name": "T _task_inspect", - "type": "CPP" - }, - { - "name": "T _task_get_exc_guard_behavior", - "type": "CPP" - }, - { - "name": "T _task_set_exc_guard_behavior", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_task_is_self", - "type": "CPP" - }, - { - "name": "T _task_dyld_process_info_notify_register", - "type": "CPP" - }, - { - "name": "T _task_create_identity_token", - "type": "CPP" - }, - { - "name": "T _task_identity_token_get_task_port", - "type": "CPP" - }, - { - "name": "T _task_dyld_process_info_notify_deregister", - "type": "CPP" - }, - { - "name": "T _task_get_exception_ports_info", - "type": "CPP" - }, - { - "name": "T _task_test_sync_upcall", - "type": "CPP" - }, - { - "name": "T _task_set_corpse_forking_behavior", - "type": "CPP" - }, - { - "name": "T _task_test_async_upcall_propagation", - "type": "CPP" - }, - { - "name": "T _task_map_kcdata_object_64", - "type": "CPP" - }, - { - "name": "T _thread_terminate", - "type": "CPP" - }, - { - "name": "T _act_get_state", - "type": "CPP" - }, - { - "name": "T _act_set_state", - "type": "CPP" - }, - { - "name": "T _thread_set_state", - "type": "CPP" - }, - { - "name": "T _thread_suspend", - "type": "CPP" - }, - { - "name": "T _thread_resume", - "type": "CPP" - }, - { - "name": "T _thread_abort", - "type": "CPP" - }, - { - "name": "T _thread_abort_safely", - "type": "CPP" - }, - { - "name": "T _thread_depress_abort", - "type": "CPP" - }, - { - "name": "T _thread_get_special_port", - "type": "CPP" - }, - { - "name": "T _thread_set_special_port", - "type": "CPP" - }, - { - "name": "T _thread_swap_exception_ports", - "type": "CPP" - }, - { - "name": "T _thread_sample", - "type": "CPP" - }, - { - "name": "T _etap_trace_thread", - "type": "CPP" - }, - { - "name": "T _thread_assign", - "type": "CPP" - }, - { - "name": "T _thread_assign_default", - "type": "CPP" - }, - { - "name": "T _thread_get_assignment", - "type": "CPP" - }, - { - "name": "T __kernelrpc_thread_set_policy", - "type": "CPP" - }, - { - "name": "T _thread_get_mach_voucher", - "type": "CPP" - }, - { - "name": "T _thread_set_mach_voucher", - "type": "CPP" - }, - { - "name": "T _thread_swap_mach_voucher", - "type": "CPP" - }, - { - "name": "T _thread_convert_thread_state", - "type": "CPP" - }, - { - "name": "T _thread_get_exception_ports_info", - "type": "CPP" - }, - { - "name": "T _vm_inherit", - "type": "CPP" - }, - { - "name": "T _vm_read_list", - "type": "CPP" - }, - { - "name": "T _vm_write", - "type": "CPP" - }, - { - "name": "T _vm_read_overwrite", - "type": "CPP" - }, - { - "name": "T _vm_msync", - "type": "CPP" - }, - { - "name": "T _vm_behavior_set", - "type": "CPP" - }, - { - "name": "T _vm_machine_attribute", - "type": "CPP" - }, - { - "name": "T _vm_map_page_query", - "type": "CPP" - }, - { - "name": "T __kernelrpc_vm_purgable_control", - "type": "CPP" - }, - { - "name": "T __kernelrpc_vm_remap_new", - "type": "CPP" - }, - { - "name": "T _mach_memory_entry_purgable_control", - "type": "CPP" - }, - { - "name": "T _mach_memory_entry_access_tracking", - "type": "CPP" - }, - { - "name": "T _mach_memory_entry_ownership", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_create", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_destroy", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_associate", - "type": "CPP" - }, - { - "name": "T _mach_eventlink_disassociate", - "type": "CPP" - }, - { - "name": "T __kernelrpc_mach_voucher_extract_attr_recipe", - "type": "CPP" - }, - { - "name": "T _mach_voucher_extract_all_attr_recipes", - "type": "CPP" - }, - { - "name": "T _mach_voucher_debug_info", - "type": "CPP" - }, - { - "name": "t _abort", - "type": "CPP" - }, - { - "name": "t _abort.561", - "type": "CPP" - }, - { - "name": "t _abort.563", - "type": "CPP" - }, - { - "name": "t _abort.580", - "type": "CPP" - }, - { - "name": "T _abort_with_reason", - "type": "CPP" - }, - { - "name": "t _abort_with_payload_wrapper_internal", - "type": "CPP" - }, - { - "name": "T _abort_with_payload", - "type": "CPP" - }, - { - "name": "S ____kernelVersionString", - "type": "CPP" - }, - { - "name": "S ____kernelVersionNumber", - "type": "CPP" - }, - { - "name": "s __libkernel_voucher_functions_empty", - "type": "CPP" - }, - { - "name": "s ___kernelVersionString", - "type": "CPP" - }, - { - "name": "s ___kernelVersionNumber", - "type": "CPP" - }, - { - "name": "s _err_us_sub", - "type": "CPP" - }, - { - "name": "s _err_iokit_sub_map", - "type": "CPP" - }, - { - "name": "s _err_codes_iokit_common_map", - "type": "CPP" - }, - { - "name": "s _err_codes_iokit_usb_map", - "type": "CPP" - }, - { - "name": "s _err_codes_iokit_fw_map", - "type": "CPP" - }, - { - "name": "s _times_now", - "type": "CPP" - }, - { - "name": "/usr/lib/system/libsystem_platform.dylib", - "type": "SHARED_LIB" - }, - { - "name": "T _os_unfair_lock_lock_with_options", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_unlock", - "type": "CPP" - }, - { - "name": "T _os_unfair_recursive_lock_lock_with_options", - "type": "CPP" - }, - { - "name": "T __platform_strcmp", - "type": "CPP" - }, - { - "name": "T _os_unfair_recursive_lock_unlock", - "type": "CPP" - }, - { - "name": "T __platform_strncmp", - "type": "CPP" - }, - { - "name": "T __platform_strnlen", - "type": "CPP" - }, - { - "name": "T __platform_strlen", - "type": "CPP" - }, - { - "name": "T __os_once", - "type": "CPP" - }, - { - "name": "t __os_once_callout", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_lock", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_assert_owner", - "type": "CPP" - }, - { - "name": "T _ffs", - "type": "CPP" - }, - { - "name": "T _ffsll", - "type": "CPP" - }, - { - "name": "T _fls", - "type": "CPP" - }, - { - "name": "T _flsll", - "type": "CPP" - }, - { - "name": "T __os_alloc_once", - "type": "CPP" - }, - { - "name": "t __os_alloc", - "type": "CPP" - }, - { - "name": "T __platform_strcpy", - "type": "CPP" - }, - { - "name": "T __platform_memchr", - "type": "CPP" - }, - { - "name": "T __platform_memcmp", - "type": "CPP" - }, - { - "name": "T _OSAtomicDequeue", - "type": "CPP" - }, - { - "name": "T __platform_strlcpy", - "type": "CPP" - }, - { - "name": "T __platform_memset_pattern4", - "type": "CPP" - }, - { - "name": "T __platform_memset_pattern8", - "type": "CPP" - }, - { - "name": "T __platform_memset_pattern16", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_assert_not_owner", - "type": "CPP" - }, - { - "name": "T _OSAtomicEnqueue", - "type": "CPP" - }, - { - "name": "t __os_unfair_lock_lock_slow", - "type": "CPP" - }, - { - "name": "t __os_unfair_lock_unlock_slow", - "type": "CPP" - }, - { - "name": "T __platform_strstr", - "type": "CPP" - }, - { - "name": "T __platform_strncpy", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_trylock", - "type": "CPP" - }, - { - "name": "T __os_nospin_lock_lock", - "type": "CPP" - }, - { - "name": "T __os_nospin_lock_unlock", - "type": "CPP" - }, - { - "name": "T __os_nospin_lock_trylock", - "type": "CPP" - }, - { - "name": "T _os_unfair_recursive_lock_tryunlock4objc", - "type": "CPP" - }, - { - "name": "T __setjmp", - "type": "CPP" - }, - { - "name": "T __longjmp", - "type": "CPP" - }, - { - "name": "T _sigsetjmp", - "type": "CPP" - }, - { - "name": "T _setjmp", - "type": "CPP" - }, - { - "name": "T _siglongjmp", - "type": "CPP" - }, - { - "name": "T _longjmp", - "type": "CPP" - }, - { - "name": "T __platform_strlcat", - "type": "CPP" - }, - { - "name": "T __simple_salloc", - "type": "CPP" - }, - { - "name": "T __simple_vsprintf", - "type": "CPP" - }, - { - "name": "T __simple_sprintf", - "type": "CPP" - }, - { - "name": "t _hex", - "type": "CPP" - }, - { - "name": "T __simple_string", - "type": "CPP" - }, - { - "name": "T __simple_sfree", - "type": "CPP" - }, - { - "name": "t _dec", - "type": "CPP" - }, - { - "name": "T __simple_asl_log", - "type": "CPP" - }, - { - "name": "T __simple_asl_log_prog", - "type": "CPP" - }, - { - "name": "T __simple_asl_msg_new", - "type": "CPP" - }, - { - "name": "T __simple_asl_msg_set", - "type": "CPP" - }, - { - "name": "T __simple_esprintf", - "type": "CPP" - }, - { - "name": "t __simple_asl_escape_key", - "type": "CPP" - }, - { - "name": "t __simple_asl_escape_val", - "type": "CPP" - }, - { - "name": "T __simple_sappend", - "type": "CPP" - }, - { - "name": "T __simple_sresize", - "type": "CPP" - }, - { - "name": "T __simple_asl_send", - "type": "CPP" - }, - { - "name": "t __simple_asl_connect_once", - "type": "CPP" - }, - { - "name": "t _udec", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwap64", - "type": "CPP" - }, - { - "name": "T _os_unfair_recursive_lock_trylock", - "type": "CPP" - }, - { - "name": "T __os_semaphore_create", - "type": "CPP" - }, - { - "name": "T __os_semaphore_dispose", - "type": "CPP" - }, - { - "name": "T ___platform_sigaction", - "type": "CPP" - }, - { - "name": "t __os_once_gate_wait", - "type": "CPP" - }, - { - "name": "t __os_once_gate_broadcast", - "type": "CPP" - }, - { - "name": "t __os_nospin_lock_lock_slow", - "type": "CPP" - }, - { - "name": "t __os_nospin_lock_unlock_slow", - "type": "CPP" - }, - { - "name": "T _OSAtomicIncrement32", - "type": "CPP" - }, - { - "name": "T _OSAtomicDecrement32", - "type": "CPP" - }, - { - "name": "T ___libplatform_init", - "type": "CPP" - }, - { - "name": "t ___pfz_setup", - "type": "CPP" - }, - { - "name": "T __simple_getenv", - "type": "CPP" - }, - { - "name": "T __platform_bzero", - "type": "CPP" - }, - { - "name": "T __platform_memset", - "type": "CPP" - }, - { - "name": "t __simple_asl_init", - "type": "CPP" - }, - { - "name": "t __os_alloc_slow", - "type": "CPP" - }, - { - "name": "t __simple_asl_init_context", - "type": "CPP" - }, - { - "name": "T __platform_memmove", - "type": "CPP" - }, - { - "name": "T __platform_strchr", - "type": "CPP" - }, - { - "name": "T _spin_lock", - "type": "CPP" - }, - { - "name": "T _spin_unlock", - "type": "CPP" - }, - { - "name": "T _OSAtomicIncrement64", - "type": "CPP" - }, - { - "name": "t __sigtramp", - "type": "CPP" - }, - { - "name": "T _os_lock_lock", - "type": "CPP" - }, - { - "name": "t __os_lock_handoff_lock", - "type": "CPP" - }, - { - "name": "T _os_lock_unlock", - "type": "CPP" - }, - { - "name": "t __os_lock_handoff_unlock", - "type": "CPP" - }, - { - "name": "t __os_lock_handoff_lock_slow", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwap32", - "type": "CPP" - }, - { - "name": "T _OSAtomicAdd32", - "type": "CPP" - }, - { - "name": "t __os_lock_unfair_lock", - "type": "CPP" - }, - { - "name": "t __os_lock_spin_lock", - "type": "CPP" - }, - { - "name": "t __os_lock_spin_unlock", - "type": "CPP" - }, - { - "name": "T _OSMemoryBarrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwap64Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwap32Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwapPtrBarrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicOr32Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicXor32Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicAdd32Barrier", - "type": "CPP" - }, - { - "name": "T __os_semaphore_signal", - "type": "CPP" - }, - { - "name": "T __os_semaphore_wait", - "type": "CPP" - }, - { - "name": "T _OSAtomicIncrement32Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicDecrement32Barrier", - "type": "CPP" - }, - { - "name": "T __OSSpinLockLockSlow", - "type": "CPP" - }, - { - "name": "T _OSAtomicAdd64", - "type": "CPP" - }, - { - "name": "T _OSSpinLockTry", - "type": "CPP" - }, - { - "name": "T _OSAtomicAnd32OrigBarrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwapLongBarrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicTestAndSetBarrier", - "type": "CPP" - }, - { - "name": "T _os_lock_trylock", - "type": "CPP" - }, - { - "name": "t __os_lock_handoff_trylock", - "type": "CPP" - }, - { - "name": "T _OSAtomicIncrement64Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwapInt", - "type": "CPP" - }, - { - "name": "T _OSAtomicOr32", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwapLong", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwapPtr", - "type": "CPP" - }, - { - "name": "T _OSAtomicAnd32", - "type": "CPP" - }, - { - "name": "T _OSAtomicDecrement64Barrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicTestAndClear", - "type": "CPP" - }, - { - "name": "T _OSAtomicDecrement64", - "type": "CPP" - }, - { - "name": "T _OSAtomicAdd64Barrier", - "type": "CPP" - }, - { - "name": "t __sigunaltstack", - "type": "CPP" - }, - { - "name": "T _OSAtomicOr32Orig", - "type": "CPP" - }, - { - "name": "T _OSAtomicCompareAndSwapIntBarrier", - "type": "CPP" - }, - { - "name": "T __simple_vesprintf", - "type": "CPP" - }, - { - "name": "t ___simple_bprintf", - "type": "CPP" - }, - { - "name": "T __simple_esappend", - "type": "CPP" - }, - { - "name": "T _OSAtomicAnd32Orig", - "type": "CPP" - }, - { - "name": "T _OSAtomicTestAndSet", - "type": "CPP" - }, - { - "name": "T _OSAtomicTestAndClearBarrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicAnd32Barrier", - "type": "CPP" - }, - { - "name": "T _os_log_simple_now", - "type": "CPP" - }, - { - "name": "T _os_log_simple_type_from_asl", - "type": "CPP" - }, - { - "name": "T ___os_log_simple_offset", - "type": "CPP" - }, - { - "name": "T __os_log_simple_send", - "type": "CPP" - }, - { - "name": "T __os_log_simple", - "type": "CPP" - }, - { - "name": "T __os_log_simple_shim", - "type": "CPP" - }, - { - "name": "T __os_log_simple_parse_type", - "type": "CPP" - }, - { - "name": "T __os_log_simple_parse_subsystem", - "type": "CPP" - }, - { - "name": "T __os_log_simple_parse_message", - "type": "CPP" - }, - { - "name": "T __os_log_simple_parse_timestamp", - "type": "CPP" - }, - { - "name": "T __os_log_simple_parse_identifiers", - "type": "CPP" - }, - { - "name": "T __os_log_simple_parse", - "type": "CPP" - }, - { - "name": "T __os_log_simple_reinit_4launchd", - "type": "CPP" - }, - { - "name": "t __simple_asl_connect", - "type": "CPP" - }, - { - "name": "T __simple_asl_get_fd", - "type": "CPP" - }, - { - "name": "T __simple_vdprintf", - "type": "CPP" - }, - { - "name": "t __flush_reset", - "type": "CPP" - }, - { - "name": "t __flush", - "type": "CPP" - }, - { - "name": "T __simple_dprintf", - "type": "CPP" - }, - { - "name": "t __enlarge", - "type": "CPP" - }, - { - "name": "T __simple_put", - "type": "CPP" - }, - { - "name": "T __simple_putline", - "type": "CPP" - }, - { - "name": "t _oct", - "type": "CPP" - }, - { - "name": "t _ydec", - "type": "CPP" - }, - { - "name": "T _OSAtomicFifoEnqueue", - "type": "CPP" - }, - { - "name": "T _OSAtomicFifoDequeue", - "type": "CPP" - }, - { - "name": "T _sys_cache_control", - "type": "CPP" - }, - { - "name": "T _sys_icache_invalidate", - "type": "CPP" - }, - { - "name": "t _cpus_that_need_dsb_for_ic_ivau", - "type": "CPP" - }, - { - "name": "T _sys_dcache_flush", - "type": "CPP" - }, - { - "name": "t __OSSpinLockLockYield", - "type": "CPP" - }, - { - "name": "T _spin_lock_try", - "type": "CPP" - }, - { - "name": "t __os_lock_spin_trylock", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_trylock_with_options", - "type": "CPP" - }, - { - "name": "t __os_unfair_lock_trylock_with_options_slow", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_lock_no_tsd", - "type": "CPP" - }, - { - "name": "T _os_unfair_lock_unlock_no_tsd", - "type": "CPP" - }, - { - "name": "T _os_unfair_recursive_lock_owned", - "type": "CPP" - }, - { - "name": "T _os_unfair_recursive_lock_unlock_forked_child", - "type": "CPP" - }, - { - "name": "t __os_lock_unfair_trylock", - "type": "CPP" - }, - { - "name": "t __os_lock_unfair_unlock", - "type": "CPP" - }, - { - "name": "t __os_lock_nospin_lock", - "type": "CPP" - }, - { - "name": "t __os_lock_nospin_trylock", - "type": "CPP" - }, - { - "name": "t __os_lock_nospin_unlock", - "type": "CPP" - }, - { - "name": "T ___os_once_reset", - "type": "CPP" - }, - { - "name": "T _os_sync_wait_on_address_with_deadline", - "type": "CPP" - }, - { - "name": "T _os_sync_wait_on_address_with_timeout", - "type": "CPP" - }, - { - "name": "T _os_sync_wait_on_address", - "type": "CPP" - }, - { - "name": "T _os_sync_wake_by_address_any", - "type": "CPP" - }, - { - "name": "T _os_sync_wake_by_address_all", - "type": "CPP" - }, - { - "name": "T _OSAtomicOr32OrigBarrier", - "type": "CPP" - }, - { - "name": "T _OSAtomicXor32", - "type": "CPP" - }, - { - "name": "T _OSAtomicXor32Orig", - "type": "CPP" - }, - { - "name": "T _OSAtomicXor32OrigBarrier", - "type": "CPP" - }, - { - "name": "t __OSAtomicEnqueue_misalign", - "type": "CPP" - }, - { - "name": "t __OSAtomicDequeue_misalign", - "type": "CPP" - }, - { - "name": "t _memset", - "type": "CPP" - }, - { - "name": "T __platform_memccpy", - "type": "CPP" - }, - { - "name": "T __platform_memcmp_zero_aligned8", - "type": "CPP" - }, - { - "name": "T _swapcontext", - "type": "CPP" - }, - { - "name": "T __ctx_done", - "type": "CPP" - }, - { - "name": "/usr/lib/system/libsystem_pthread.dylib", - "type": "SHARED_LIB" - }, - { - "name": "T __pthread_exit_if_canceled", - "type": "CPP" - }, - { - "name": "T ___pthread_init", - "type": "CPP" - }, - { - "name": "t __pthread_strtoul", - "type": "CPP" - }, - { - "name": "t __pthread_main_thread_init", - "type": "CPP" - }, - { - "name": "t __pthread_bsdthread_init", - "type": "CPP" - }, - { - "name": "t __pthread_set_main_qos", - "type": "CPP" - }, - { - "name": "t __pthread_key_global_init", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_global_init", - "type": "CPP" - }, - { - "name": "T _pthread_key_init_np", - "type": "CPP" - }, - { - "name": "T _pthread_key_create", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_lock", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_lock_init_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_check_init_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_firstfit_lock_slow", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_unlock", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_unlock_init_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_firstfit_unlock_slow", - "type": "CPP" - }, - { - "name": "T _qos_class_main", - "type": "CPP" - }, - { - "name": "T _start_wqthread", - "type": "CPP" - }, - { - "name": "T _thread_start", - "type": "CPP" - }, - { - "name": "T _thread_chkstk_darwin", - "type": "CPP" - }, - { - "name": "T _pthread_getspecific", - "type": "CPP" - }, - { - "name": "T _pthread_setspecific", - "type": "CPP" - }, - { - "name": "T _pthread_cond_broadcast", - "type": "CPP" - }, - { - "name": "t __pthread_cond_check_init_slow", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_destroy", - "type": "CPP" - }, - { - "name": "T _pthread_atfork", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_init", - "type": "CPP" - }, - { - "name": "T _pthread_self", - "type": "CPP" - }, - { - "name": "T _pthread_mach_thread_np", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_init", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_settype", - "type": "CPP" - }, - { - "name": "T _pthread_main_np", - "type": "CPP" - }, - { - "name": "T _pthread_equal", - "type": "CPP" - }, - { - "name": "T _pthread_attr_init", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setscope", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setdetachstate", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getschedparam", - "type": "CPP" - }, - { - "name": "T _pthread_main_thread_np", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_destroy", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_supported", - "type": "CPP" - }, - { - "name": "T _pthread_workqueue_setup", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getschedpolicy", - "type": "CPP" - }, - { - "name": "T __pthread_qos_class_encode", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_set_event_manager_priority", - "type": "CPP" - }, - { - "name": "T _pthread_once", - "type": "CPP" - }, - { - "name": "t ___pthread_once_handler", - "type": "CPP" - }, - { - "name": "T _pthread_qos_max_parallelism", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_addthreads", - "type": "CPP" - }, - { - "name": "T __pthread_wqthread", - "type": "CPP" - }, - { - "name": "t __pthread_wqthread_setup", - "type": "CPP" - }, - { - "name": "T _pthread_rwlock_rdlock", - "type": "CPP" - }, - { - "name": "t __pthread_rwlock_lock_slow", - "type": "CPP" - }, - { - "name": "t __pthread_rwlock_check_init_slow", - "type": "CPP" - }, - { - "name": "T _pthread_rwlock_unlock", - "type": "CPP" - }, - { - "name": "T _pthread_rwlock_wrlock", - "type": "CPP" - }, - { - "name": "T _pthread_create", - "type": "CPP" - }, - { - "name": "t __pthread_markcancel_if_canceled", - "type": "CPP" - }, - { - "name": "T _pthread_set_qos_class_self_np", - "type": "CPP" - }, - { - "name": "T __pthread_set_properties_self", - "type": "CPP" - }, - { - "name": "T _pthread_setname_np", - "type": "CPP" - }, - { - "name": "T _pthread_cond_wait", - "type": "CPP" - }, - { - "name": "T _pthread_testcancel", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_droplock", - "type": "CPP" - }, - { - "name": "T _sched_yield", - "type": "CPP" - }, - { - "name": "t __pthread_cond_updateval", - "type": "CPP" - }, - { - "name": "T _pthread_cond_timedwait", - "type": "CPP" - }, - { - "name": "T _pthread_get_stackaddr_np", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_override_start_direct", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_firstfit_lock_wait", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_firstfit_wake", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_override_reset", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_should_narrow", - "type": "CPP" - }, - { - "name": "T _pthread_get_stacksize_np", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_trylock", - "type": "CPP" - }, - { - "name": "T _pthread_rwlock_init", - "type": "CPP" - }, - { - "name": "T __pthread_qos_class_decode", - "type": "CPP" - }, - { - "name": "t __pthread_wqthread_exit", - "type": "CPP" - }, - { - "name": "T _pthread_exit", - "type": "CPP" - }, - { - "name": "t __pthread_setcancelstate_exit", - "type": "CPP" - }, - { - "name": "t __pthread_tsd_cleanup", - "type": "CPP" - }, - { - "name": "t __pthread_terminate_invoke", - "type": "CPP" - }, - { - "name": "t __pthread_terminate", - "type": "CPP" - }, - { - "name": "T _pthread_cond_init", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getstacksize", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setstacksize", - "type": "CPP" - }, - { - "name": "T _pthread_attr_destroy", - "type": "CPP" - }, - { - "name": "T _pthread_getschedparam", - "type": "CPP" - }, - { - "name": "T _pthread_setschedparam", - "type": "CPP" - }, - { - "name": "T __pthread_clear_qos_tsd", - "type": "CPP" - }, - { - "name": "T _pthread_cond_destroy", - "type": "CPP" - }, - { - "name": "T _qos_class_self", - "type": "CPP" - }, - { - "name": "T _pthread_stack_frame_decode_np", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_override_start_direct_check_owner", - "type": "CPP" - }, - { - "name": "T _pthread_rwlock_trywrlock", - "type": "CPP" - }, - { - "name": "T _pthread_attr_set_qos_class_np", - "type": "CPP" - }, - { - "name": "t __pthread_rwlock_lock_wait", - "type": "CPP" - }, - { - "name": "t __pthread_rwlock_unlock_slow", - "type": "CPP" - }, - { - "name": "t __pthread_rwlock_unlock_drop", - "type": "CPP" - }, - { - "name": "T __pthread_qos_override_end_direct", - "type": "CPP" - }, - { - "name": "T _pthread_cond_timedwait_relative_np", - "type": "CPP" - }, - { - "name": "T _pthread_rwlock_destroy", - "type": "CPP" - }, - { - "name": "T _pthread_getname_np", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setschedpolicy", - "type": "CPP" - }, - { - "name": "T __pthread_workloop_create", - "type": "CPP" - }, - { - "name": "T _pthread_threadid_np", - "type": "CPP" - }, - { - "name": "T _pthread_get_qos_class_np", - "type": "CPP" - }, - { - "name": "T _pthread_override_qos_class_start_np", - "type": "CPP" - }, - { - "name": "T _pthread_cond_signal", - "type": "CPP" - }, - { - "name": "T _pthread_setcanceltype", - "type": "CPP" - }, - { - "name": "T _pthread_set_fixedpriority_self", - "type": "CPP" - }, - { - "name": "T _pthread_sigmask", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setschedparam", - "type": "CPP" - }, - { - "name": "T _pthread_attr_get_qos_class_np", - "type": "CPP" - }, - { - "name": "T _pthread_override_qos_class_end_np", - "type": "CPP" - }, - { - "name": "T _pthread_detach", - "type": "CPP" - }, - { - "name": "T __pthread_atfork_prepare_handlers", - "type": "CPP" - }, - { - "name": "T _pthread_is_threaded_np", - "type": "CPP" - }, - { - "name": "T __pthread_atfork_prepare", - "type": "CPP" - }, - { - "name": "T __pthread_atfork_parent", - "type": "CPP" - }, - { - "name": "T __pthread_atfork_parent_handlers", - "type": "CPP" - }, - { - "name": "t __pthread_current_stack_address", - "type": "CPP" - }, - { - "name": "T _pthread_key_delete", - "type": "CPP" - }, - { - "name": "T __pthread_qos_override_start_direct", - "type": "CPP" - }, - { - "name": "T _pthread_join", - "type": "CPP" - }, - { - "name": "t __pthread_joiner_prepost_wake", - "type": "CPP" - }, - { - "name": "t __pthread_joiner_wake", - "type": "CPP" - }, - { - "name": "t __pthread_deallocate", - "type": "CPP" - }, - { - "name": "T _pthread_kill", - "type": "CPP" - }, - { - "name": "T _pthread_set_timeshare_self", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_init_with_workloop", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setinheritsched", - "type": "CPP" - }, - { - "name": "T _pthread_fchdir_np", - "type": "CPP" - }, - { - "name": "T _pthread_rwlockattr_init", - "type": "CPP" - }, - { - "name": "T _pthread_rwlockattr_destroy", - "type": "CPP" - }, - { - "name": "T _sched_get_priority_max", - "type": "CPP" - }, - { - "name": "T __pthread_set_self", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_init", - "type": "CPP" - }, - { - "name": "T __pthread_qos_class_encode_workqueue", - "type": "CPP" - }, - { - "name": "T __pthread_override_qos_class_start_direct", - "type": "CPP" - }, - { - "name": "T __pthread_start", - "type": "CPP" - }, - { - "name": "T __pthread_override_qos_class_end_direct", - "type": "CPP" - }, - { - "name": "t __pthread_cond_wait", - "type": "CPP" - }, - { - "name": "t __pthread_exit", - "type": "CPP" - }, - { - "name": "T _pthread_join$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_setpshared", - "type": "CPP" - }, - { - "name": "T __pthread_fork_prepare", - "type": "CPP" - }, - { - "name": "T __pthread_fork_parent", - "type": "CPP" - }, - { - "name": "T _sigwait", - "type": "CPP" - }, - { - "name": "T _pthread_workqueue_setdispatch_np", - "type": "CPP" - }, - { - "name": "T _sched_get_priority_min", - "type": "CPP" - }, - { - "name": "T _pthread_setcancelstate", - "type": "CPP" - }, - { - "name": "T _pthread_set_qos_class_np", - "type": "CPP" - }, - { - "name": "t __pthread_globals_init", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getdetachstate", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getinheritsched", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getscope", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getstackaddr", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setstackaddr", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getstack", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setstack", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setguardsize", - "type": "CPP" - }, - { - "name": "T _pthread_attr_getguardsize", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setcpupercent_np", - "type": "CPP" - }, - { - "name": "T _pthread_attr_setworkinterval_np", - "type": "CPP" - }, - { - "name": "T _pthread_from_mach_thread_np", - "type": "CPP" - }, - { - "name": "t __pthread_threadid_slow", - "type": "CPP" - }, - { - "name": "T _pthread_cpu_number_np", - "type": "CPP" - }, - { - "name": "T _pthread_jit_write_protect_np", - "type": "CPP" - }, - { - "name": "T _pthread_jit_write_protect_supported_np", - "type": "CPP" - }, - { - "name": "T _pthread_jit_write_with_callback_np", - "type": "CPP" - }, - { - "name": "T _pthread_jit_write_freeze_callbacks_np", - "type": "CPP" - }, - { - "name": "t __pthread_jit_write_protect_freeze_config", - "type": "CPP" - }, - { - "name": "t __pthread_create", - "type": "CPP" - }, - { - "name": "T _pthread_create_from_mach_thread", - "type": "CPP" - }, - { - "name": "T _pthread_create_suspended_np", - "type": "CPP" - }, - { - "name": "T _pthread_install_workgroup_functions_np", - "type": "CPP" - }, - { - "name": "T _pthread_create_with_workgroup_np", - "type": "CPP" - }, - { - "name": "T ___pthread_workqueue_setkill", - "type": "CPP" - }, - { - "name": "T _pthread_self_is_exiting_np", - "type": "CPP" - }, - { - "name": "T _pthread_getconcurrency", - "type": "CPP" - }, - { - "name": "T _pthread_setconcurrency", - "type": "CPP" - }, - { - "name": "T ___pthread_late_init", - "type": "CPP" - }, - { - "name": "t __pthread_introspection_thread_start", - "type": "CPP" - }, - { - "name": "t __pthread_main_thread_postfork_init", - "type": "CPP" - }, - { - "name": "T __pthread_yield_to_enqueuer_4dispatch", - "type": "CPP" - }, - { - "name": "T _pthread_current_stack_contains_np", - "type": "CPP" - }, - { - "name": "t __pthread_wqthread_legacy_worker_wrap", - "type": "CPP" - }, - { - "name": "T _pthread_workqueue_setdispatchoffset_np", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_init_with_kevent", - "type": "CPP" - }, - { - "name": "T _pthread_workqueue_addthreads_np", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_add_cooperativethreads", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_allow_send_signals", - "type": "CPP" - }, - { - "name": "T __pthread_workloop_destroy", - "type": "CPP" - }, - { - "name": "T _pthread_introspection_hook_install", - "type": "CPP" - }, - { - "name": "t _bzero", - "type": "CPP" - }, - { - "name": "t __pthread_introspection_hook_callout_thread_create", - "type": "CPP" - }, - { - "name": "t __pthread_introspection_hook_callout_thread_terminate", - "type": "CPP" - }, - { - "name": "t __pthread_jit_write_protect_bulk_image_load_callback", - "type": "CPP" - }, - { - "name": "t __pthread_introspection_hook_callout_thread_start", - "type": "CPP" - }, - { - "name": "t __pthread_introspection_hook_callout_thread_destroy", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_0", - "type": "CPP" - }, - { - "name": "T _pthread_cancel", - "type": "CPP" - }, - { - "name": "t __pthread_join", - "type": "CPP" - }, - { - "name": "T _pthread_cond_wait$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _pthread_cond_timedwait$NOCANCEL", - "type": "CPP" - }, - { - "name": "T _sigwait$NOCANCEL", - "type": "CPP" - }, - { - "name": "t __pthread_joiner_abort_wait", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_0", - "type": "CPP" - }, - { - "name": "T _pthread_condattr_init", - "type": "CPP" - }, - { - "name": "T _pthread_condattr_destroy", - "type": "CPP" - }, - { - "name": "T _pthread_condattr_getpshared", - "type": "CPP" - }, - { - "name": "T _pthread_condattr_setpshared", - "type": "CPP" - }, - { - "name": "T _pthread_cond_signal_thread_np", - "type": "CPP" - }, - { - "name": "t __pthread_ulock_cond_wait_complete", - "type": "CPP" - }, - { - "name": "t __pthread_ulock_cond_cleanup", - "type": "CPP" - }, - { - "name": "t __pthread_psynch_cond_cleanup", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_0", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_1", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_2", - "type": "CPP" - }, - { - "name": "t _mutex_seq_atomic_cmpxchgv_relaxed", - "type": "CPP" - }, - { - "name": "t _mutex_seq_atomic_cmpxchgv_acquire", - "type": "CPP" - }, - { - "name": "t _mutex_seq_atomic_cmpxchgv_release", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_getprioceiling", - "type": "CPP" - }, - { - "name": "T _pthread_mutex_setprioceiling", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_getprioceiling", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_getprotocol", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_getpolicy_np", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_gettype", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_getpshared", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_setprioceiling", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_setprotocol", - "type": "CPP" - }, - { - "name": "T _pthread_mutexattr_setpolicy_np", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_fairshare_lock_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_fairshare_lock_wait", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_fairshare_unlock_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_fairshare_unlock_drop", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_ulock_lock", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_ulock_lock_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_ulock_unlock", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_ulock_unlock_slow", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_fairshare_unlock", - "type": "CPP" - }, - { - "name": "T __pthread_mutex_enable_legacy_mode", - "type": "CPP" - }, - { - "name": "t __pthread_mutex_fairshare_lock", - "type": "CPP" - }, - { - "name": "T __pthread_qos_class_and_override_encode", - "type": "CPP" - }, - { - "name": "T __pthread_qos_class_and_override_decode", - "type": "CPP" - }, - { - "name": "T __pthread_sched_pri_encode", - "type": "CPP" - }, - { - "name": "T __pthread_sched_pri_decode", - "type": "CPP" - }, - { - "name": "T _pthread_prefer_alternate_cluster_self", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_asynchronous_override_add", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_asynchronous_override_reset_self", - "type": "CPP" - }, - { - "name": "T __pthread_workqueue_asynchronous_override_reset_all_self", - "type": "CPP" - }, - { - "name": "T _pthread_time_constraint_max_parallelism", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_set_qos_class_np", - "type": "CPP" - }, - { - "name": "T _posix_spawnattr_get_qos_class_np", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_0", - "type": "CPP" - }, - { - "name": "t _OUTLINED_FUNCTION_1", - "type": "CPP" - }, - { - "name": "/usr/lib/system/libsystem_symptoms.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libsystem_trace.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libunwind.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libxpc.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libDiagnosticMessagesClient.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libenergytrace.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libbsm.0.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libz.1.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/system/libkxld.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Security.framework/Versions/A/Security", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libapple_nghttp2.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libcompression.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libsqlite3.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Network.framework/Versions/A/Network", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libCoreEntitlements.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/MessageSecurity.framework/Versions/A/MessageSecurity", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libMobileGestalt.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libcoretls.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libcoretls_cfhelpers.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libpam.2.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libxar.1.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libarchive.2.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libxml2.2.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/liblangid.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Combine.framework/Versions/A/Combine", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CollectionsInternal.framework/Versions/A/CollectionsInternal", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/ReflectionInternal.framework/Versions/A/ReflectionInternal", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/RuntimeInternal.framework/Versions/A/RuntimeInternal", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftCore.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftCoreFoundation.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftDarwin.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftDispatch.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftIOKit.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftObjectiveC.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftXPC.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswift_Concurrency.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswift_StringProcessing.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswiftos.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libpcap.A.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libdns_services.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libnetwork.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/liblzma.5.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/swift/libswift_RegexParser.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libbz2.1.0.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libiconv.2.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libcharset.1.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libheimdal-asn1.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libCheckFix.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libmecab.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libCRFSuite.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libgermantok.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libThaiTokenizer.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/MIL.framework/Versions/A/MIL", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libutil.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/Versions/A/InstalledContentLibrary", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libapp_launch_measurement.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/Versions/A/AppleMobileFileIntegrity", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libmis.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/MobileSystemServices.framework/Versions/A/MobileSystemServices", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/ConfigProfileHelper.framework/Versions/A/ConfigProfileHelper", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libxslt.1.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libcmph.dylib", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon", - "type": "SHARED_LIB" - }, - { - "name": "/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement", - "type": "SHARED_LIB" - }, - { - "name": "/usr/lib/libTLE.dylib", - "type": "SHARED_LIB" - }, - { - "name": "DeoptimizationEntry_Eager", - "timestamp": 3375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DeoptimizationEntry_Lazy", - "timestamp": 3375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RecordWriteSaveFP", - "timestamp": 3375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RecordWriteIgnoreFP", - "timestamp": 3375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "EphemeronKeyBarrierSaveFP", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "EphemeronKeyBarrierIgnoreFP", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AdaptorWithBuiltinExitFrame", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunction_ReceiverIsNullOrUndefined", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunction_ReceiverIsNotNullOrUndefined", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunction_ReceiverIsAny", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallBoundFunction", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallWrappedFunction", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNullOrUndefined", - "timestamp": 3417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNotNullOrUndefined", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsAny", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNullOrUndefined_Baseline_Compact", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNullOrUndefined_Baseline", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNotNullOrUndefined_Baseline_Compact", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNotNullOrUndefined_Baseline", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsAny_Baseline_Compact", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsAny_Baseline", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNullOrUndefined_WithFeedback", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsNotNullOrUndefined_WithFeedback", - "timestamp": 3459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Call_ReceiverIsAny_WithFeedback", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallProxy", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallVarargs", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallWithSpread", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallWithSpread_Baseline", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallWithSpread_WithFeedback", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallWithArrayLike", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallWithArrayLike_WithFeedback", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallForwardVarargs", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunctionForwardVarargs", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunctionTemplate_CheckAccess", - "timestamp": 3500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunctionTemplate_CheckCompatibleReceiver", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallFunctionTemplate_CheckAccessAndCompatibleReceiver", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructFunction", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructBoundFunction", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructedNonConstructable", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Construct", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructVarargs", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructWithSpread", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructWithSpread_Baseline", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructWithSpread_WithFeedback", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructWithArrayLike", - "timestamp": 3542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructWithArrayLike_WithFeedback", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructForwardVarargs", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructFunctionForwardVarargs", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Construct_Baseline", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Construct_WithFeedback", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSConstructStubGeneric", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSBuiltinsConstructStub", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewObject", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewClosure", - "timestamp": 3584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConstructProxy", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSEntry", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSConstructEntry", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSRunMicrotasksEntry", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSEntryTrampoline", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSConstructEntryTrampoline", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ResumeGeneratorTrampoline", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringFromCodePointAt", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringEqual", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringGreaterThan", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringGreaterThanOrEqual", - "timestamp": 3625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringLessThan", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringLessThanOrEqual", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringCompare", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringSubstring", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "OrderedHashTableHealIndex", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterEntryTrampoline", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterEntryTrampolineForProfiling", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterPushArgsThenCall", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterPushUndefinedAndArgsThenCall", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterPushArgsThenCallWithFinalSpread", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterPushArgsThenConstruct", - "timestamp": 3667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterPushArgsThenConstructArrayFunction", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterPushArgsThenConstructWithFinalSpread", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterEnterAtBytecode", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterEnterAtNextBytecode", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterOnStackReplacement", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BaselineOutOfLinePrologue", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BaselineOutOfLinePrologueDeopt", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BaselineOnStackReplacement", - "timestamp": 3709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BaselineLeaveFrame", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BaselineOrInterpreterEnterAtBytecode", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BaselineOrInterpreterEnterAtNextBytecode", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InterpreterOnStackReplacement_ToBaseline", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MaglevOnStackReplacement", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CompileLazy", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CompileLazyDeoptimizedCode", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InstantiateAsmJs", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NotifyDeoptimized", - "timestamp": 3750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ContinueToCodeStubBuiltin", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ContinueToCodeStubBuiltinWithResult", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ContinueToJavaScriptBuiltin", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ContinueToJavaScriptBuiltinWithResult", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallApiCallback", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallApiGetter", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "HandleApiCall", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "HandleApiCallAsFunction", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "HandleApiCallAsConstructor", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AllocateInYoungGeneration", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AllocateRegularInYoungGeneration", - "timestamp": 3792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AllocateInOldGeneration", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AllocateRegularInOldGeneration", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NewHeapNumber", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CopyFastSmiOrObjectElements", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GrowFastDoubleElements", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GrowFastSmiOrObjectElements", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DebugBreakTrampoline", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RestartFrameTrampoline", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToNumber", - "timestamp": 3834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToBigInt", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToNumber_Baseline", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToNumeric_Baseline", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PlainPrimitiveToNumber", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToNumberConvertBigInt", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToBigIntConvertNumber", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Typeof", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntToI64", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntToI32Pair", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "I64ToBigInt", - "timestamp": 3875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "I32PairToBigInt", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToBooleanLazyDeoptContinuation", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathCeilContinuation", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathFloorContinuation", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathRoundContinuation", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadIC_PolymorphicName", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreIC_Megamorphic", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineKeyedOwnIC_Megamorphic", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalIC_NoFeedback", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC_FunctionPrototype", - "timestamp": 3917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC_StringLength", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC_StringWrapperLength", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC_NoFeedback", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreGlobalIC_Slow", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreIC_NoFeedback", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineNamedOwnIC_NoFeedback", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadIC_SloppyArguments", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIndexedInterceptorIC", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreIC_SloppyArguments_Standard", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreIC_SloppyArguments_GrowNoTransitionHandleCOW", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreIC_SloppyArguments_NoTransitionIgnoreOOB", - "timestamp": 3959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreIC_SloppyArguments_NoTransitionHandleCOW", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreFastElementIC_Standard", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreFastElementIC_GrowNoTransitionHandleCOW", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreFastElementIC_NoTransitionIgnoreOOB", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreFastElementIC_NoTransitionHandleCOW", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ElementsTransitionAndStore_Standard", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ElementsTransitionAndStore_GrowNoTransitionHandleCOW", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ElementsTransitionAndStore_NoTransitionIgnoreOOB", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ElementsTransitionAndStore_NoTransitionHandleCOW", - "timestamp": 4000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedHasIC_PolymorphicName", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedHasIC_SloppyArguments", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "HasIndexedInterceptorIC", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "EnqueueMicrotask", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RunMicrotasksTrampoline", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RunMicrotasks", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "HasProperty", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DeleteProperty", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CopyDataProperties", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetDataProperties", - "timestamp": 4042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CopyDataPropertiesWithExcludedPropertiesOnStack", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CopyDataPropertiesWithExcludedProperties", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Abort", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AbortCSADcheck", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "EmptyFunction", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Illegal", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StrictPoisonPillThrower", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "UnsupportedThrower", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReturnReceiver", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayConstructor", - "timestamp": 4084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayConstructorImpl", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_PackedSmi_DontOverride", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_HoleySmi_DontOverride", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_PackedSmi_DisableAllocationSites", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_HoleySmi_DisableAllocationSites", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_Packed_DisableAllocationSites", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_Holey_DisableAllocationSites", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_PackedDouble_DisableAllocationSites", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNoArgumentConstructor_HoleyDouble_DisableAllocationSites", - "timestamp": 4125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_PackedSmi_DontOverride", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_HoleySmi_DontOverride", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_PackedSmi_DisableAllocationSites", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_Packed_DisableAllocationSites", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_Holey_DisableAllocationSites", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_PackedDouble_DisableAllocationSites", - "timestamp": 4167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySingleArgumentConstructor_HoleyDouble_DisableAllocationSites", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayNArgumentsConstructor", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayConcat", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFill", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIncludesSmi", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIncludesSmiOrObject", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIncludesPackedDoubles", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIncludesHoleyDoubles", - "timestamp": 4209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIncludes", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIndexOfSmi", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIndexOfSmiOrObject", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIndexOfPackedDoubles", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIndexOfHoleyDoubles", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIndexOf", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPop", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypePop", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeGroup", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeGroupToMap", - "timestamp": 4250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPush", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypePush", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayShift", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayUnshift", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFromAsync", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CloneFastJSArray", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CloneFastJSArrayFillingHoles", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ExtractFastJSArray", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeEntries", - "timestamp": 4292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeKeys", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeValues", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIteratorPrototypeNext", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FlattenIntoArray", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FlatMapIntoArray", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFlat", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFlatMap", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferConstructor", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferConstructor_DoNotInitialize", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeSlice", - "timestamp": 4334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeResize", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeTransfer", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeTransferToFixedLength", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionEnter", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionReject", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionResolve", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionLazyDeoptContinuation", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionAwaitCaught", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionAwaitUncaught", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionAwaitRejectClosure", - "timestamp": 4375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionAwaitResolveClosure", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntConstructor", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntAsUintN", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntAsIntN", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntPrototypeToLocaleString", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntPrototypeToString", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntPrototypeValueOf", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetColumnNumber", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetEnclosingColumnNumber", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetEnclosingLineNumber", - "timestamp": 4417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetEvalOrigin", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetFileName", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetFunction", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetFunctionName", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetLineNumber", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetMethodName", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetPosition", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetPromiseIndex", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetScriptHash", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetScriptNameOrSourceURL", - "timestamp": 4459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetThis", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeGetTypeName", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeIsAsync", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeIsConstructor", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeIsEval", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeIsNative", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeIsPromiseAll", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeIsToplevel", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallSitePrototypeToString", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleDebug", - "timestamp": 4500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleError", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleInfo", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleLog", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleWarn", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleDir", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleDirXml", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleTable", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleTrace", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleGroup", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleGroupCollapsed", - "timestamp": 4542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleGroupEnd", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleClear", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleCount", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleCountReset", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleAssert", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleProfile", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleProfileEnd", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleTime", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleTimeLog", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleTimeEnd", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleTimeStamp", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConsoleContext", - "timestamp": 4584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewConstructor", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateConstructor", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetDate", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetDay", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetFullYear", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetHours", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetMilliseconds", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetMinutes", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetMonth", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetSeconds", - "timestamp": 4625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetTime", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetTimezoneOffset", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCDate", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCDay", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCFullYear", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCHours", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCMilliseconds", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCMinutes", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCMonth", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetUTCSeconds", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeValueOf", - "timestamp": 4667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToPrimitive", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeGetYear", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetYear", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateNow", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateParse", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetDate", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetFullYear", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetHours", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetMilliseconds", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetMinutes", - "timestamp": 4709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetMonth", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetSeconds", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetTime", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCDate", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCFullYear", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCHours", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCMilliseconds", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCMinutes", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCMonth", - "timestamp": 4750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeSetUTCSeconds", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToDateString", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToISOString", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToUTCString", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToString", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToTimeString", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToJson", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateUTC", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ErrorConstructor", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ErrorCaptureStackTrace", - "timestamp": 4792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ErrorPrototypeToString", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FunctionConstructor", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FunctionPrototypeApply", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FunctionPrototypeBind", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FunctionPrototypeCall", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FunctionPrototypeToString", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateIterResultObject", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateGeneratorObject", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GeneratorFunctionConstructor", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GeneratorPrototypeNext", - "timestamp": 4834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GeneratorPrototypeReturn", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GeneratorPrototypeThrow", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFunctionConstructor", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SuspendGeneratorBaseline", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ResumeGeneratorBaseline", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetIteratorWithFeedbackLazyDeoptContinuation", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallIteratorWithFeedbackLazyDeoptContinuation", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalDecodeURI", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalDecodeURIComponent", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalEncodeURI", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalEncodeURIComponent", - "timestamp": 4875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalEscape", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalUnescape", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalEval", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalIsFinite", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GlobalIsNaN", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JsonParse", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JsonStringify", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JsonRawJson", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JsonIsRawJson", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC_Megamorphic", - "timestamp": 4917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadIC_Noninlined", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadICTrampoline", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadICBaseline", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadICTrampoline_Megamorphic", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadSuperIC", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadSuperICBaseline", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadIC", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadIC_Megamorphic", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadIC_MegamorphicStringKey", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadICTrampoline", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadICBaseline", - "timestamp": 4959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadICTrampoline_Megamorphic", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedLoadICTrampoline_MegamorphicStringKey", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreGlobalIC", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreGlobalICTrampoline", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreGlobalICBaseline", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreIC", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreICTrampoline", - "timestamp": 5000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreICBaseline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineNamedOwnIC", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineNamedOwnICTrampoline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineNamedOwnICBaseline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreIC", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreICTrampoline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedStoreICBaseline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineKeyedOwnIC", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineKeyedOwnICTrampoline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DefineKeyedOwnICBaseline", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreInArrayLiteralIC", - "timestamp": 5042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreInArrayLiteralICBaseline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupContextTrampoline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupContextBaseline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupContextInsideTypeofTrampoline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupContextInsideTypeofBaseline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalIC", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalICInsideTypeof", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalICTrampoline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalICBaseline", - "timestamp": 5084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalICInsideTypeofTrampoline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadGlobalICInsideTypeofBaseline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupGlobalIC", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupGlobalICTrampoline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupGlobalICBaseline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupGlobalICInsideTypeof", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupGlobalICInsideTypeofTrampoline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LookupGlobalICInsideTypeofBaseline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CloneObjectIC", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CloneObjectICBaseline", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CloneObjectIC_Slow", - "timestamp": 5125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedHasIC", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedHasICBaseline", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "KeyedHasIC_Megamorphic", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IterableToList", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IterableToFixedArray", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IterableToListWithSymbolLookup", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IterableToFixedArrayWithSymbolLookupSlow", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IterableToListMayPreserveHoles", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IterableToFixedArrayForWasm", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringListFromIterable", - "timestamp": 5167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FindOrderedHashMapEntry", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapConstructor", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeSet", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeDelete", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeGet", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeHas", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeClear", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeEntries", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeGetSize", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeForEach", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeKeys", - "timestamp": 5209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapPrototypeValues", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapIteratorPrototypeNext", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MapIteratorToList", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberPrototypeToExponential", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberPrototypeToFixed", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberPrototypeToLocaleString", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberPrototypeToPrecision", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SameValue", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SameValueNumbersOnly", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Add_Baseline", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AddSmi_Baseline", - "timestamp": 5250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Subtract_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SubtractSmi_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Multiply_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MultiplySmi_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Divide_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DivideSmi_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Modulus_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ModulusSmi_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Exponentiate_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ExponentiateSmi_Baseline", - "timestamp": 5292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseAnd_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseAndSmi_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseOr_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseOrSmi_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseXor_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseXorSmi_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftLeft_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftLeftSmi_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRight_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRightSmi_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRightLogical_Baseline", - "timestamp": 5334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRightLogicalSmi_Baseline", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Add_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Subtract_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Multiply_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Divide_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Modulus_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Exponentiate_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseAnd_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseOr_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseXor_WithFeedback", - "timestamp": 5375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftLeft_WithFeedback", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRight_WithFeedback", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRightLogical_WithFeedback", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Equal_Baseline", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StrictEqual_Baseline", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LessThan_Baseline", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GreaterThan_Baseline", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LessThanOrEqual_Baseline", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GreaterThanOrEqual_Baseline", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Equal_WithFeedback", - "timestamp": 5417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StrictEqual_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LessThan_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GreaterThan_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LessThanOrEqual_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GreaterThanOrEqual_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseNot_Baseline", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Decrement_Baseline", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Increment_Baseline", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Negate_Baseline", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseNot_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Decrement_WithFeedback", - "timestamp": 5459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Increment_WithFeedback", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Negate_WithFeedback", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectAssign", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectCreate", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectDefineGetter", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectDefineProperties", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectDefineProperty", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectDefineSetter", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectEntries", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectFreeze", - "timestamp": 5500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectGetOwnPropertyDescriptor", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectGetOwnPropertyDescriptors", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectGetOwnPropertyNames", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectGetOwnPropertySymbols", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectHasOwn", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectIs", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectIsFrozen", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectIsSealed", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectKeys", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectLookupGetter", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectLookupSetter", - "timestamp": 5542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeHasOwnProperty", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeIsPrototypeOf", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypePropertyIsEnumerable", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeGetProto", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeSetProto", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectSeal", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectToString", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectValues", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "OrdinaryHasInstance", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InstanceOf", - "timestamp": 5584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InstanceOf_WithFeedback", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "InstanceOf_Baseline", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ForInEnumerate", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ForInPrepare", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ForInFilter", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectApply", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectConstruct", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectDefineProperty", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectOwnKeys", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectSet", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture1Getter", - "timestamp": 5625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture2Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture3Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture4Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture5Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture6Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture7Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture8Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpCapture9Getter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpConstructor", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpInputGetter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpInputSetter", - "timestamp": 5667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpLastMatchGetter", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpLastParenGetter", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpLeftContextGetter", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeCompile", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeToString", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpRightContextGetter", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpExecAtom", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpExecInternal", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpInterpreterTrampoline", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpExperimentalTrampoline", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FindOrderedHashSetEntry", - "timestamp": 5709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetConstructor", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeHas", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeAdd", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeDelete", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeClear", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeEntries", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeGetSize", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeForEach", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetPrototypeValues", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetIteratorPrototypeNext", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetOrSetIteratorToList", - "timestamp": 5750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShadowRealmConstructor", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShadowRealmGetWrappedValue", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShadowRealmPrototypeEvaluate", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShadowRealmPrototypeImportValue", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShadowRealmImportValueFulfilled", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShadowRealmImportValueRejected", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedArrayBufferPrototypeGetByteLength", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedArrayBufferPrototypeSlice", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedArrayBufferPrototypeGrow", - "timestamp": 5792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsLoad", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsStore", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsExchange", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsCompareExchange", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsAdd", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsSub", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsAnd", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsOr", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsXor", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsNotify", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsIsLockFree", - "timestamp": 5834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsWait", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsWaitAsync", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringFromCodePoint", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringFromCharCode", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeLastIndexOf", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeMatchAll", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeLocaleCompare", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeReplace", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSplit", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringRaw", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolConstructor", - "timestamp": 5875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolFor", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolKeyFor", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayBaseConstructor", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayConstructor", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeBuffer", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeByteLength", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeByteOffset", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeLength", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeCopyWithin", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeFill", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeIncludes", - "timestamp": 5917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeIndexOf", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeLastIndexOf", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeReverse", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeToStringTag", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeMap", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GenericJSToWasmWrapper", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmReturnPromiseOnSuspend", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmSuspend", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmResume", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmReject", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmCompileLazy", - "timestamp": 5959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmLiftoffFrameSetup", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmDebugBreak", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmOnStackReplace", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmFloat32ToNumber", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmFloat64ToNumber", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JSToWasmLazyDeoptContinuation", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakMapConstructor", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakMapLookupHashIndex", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakMapGet", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakMapPrototypeHas", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakMapPrototypeSet", - "timestamp": 6000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakMapPrototypeDelete", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakSetConstructor", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakSetPrototypeHas", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakSetPrototypeAdd", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakSetPrototypeDelete", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakCollectionDelete", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakCollectionSet", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedStructTypeConstructor", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedStructConstructor", - "timestamp": 6042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedArrayConstructor", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsMutexConstructor", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsMutexLock", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsMutexTryLock", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsConditionConstructor", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsConditionWait", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AtomicsConditionNotify", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorResolve", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorReject", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorYieldWithAwait", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorReturn", - "timestamp": 6084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorResumeNext", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorFunctionConstructor", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorPrototypeNext", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorPrototypeReturn", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorPrototypeThrow", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorAwaitCaught", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorAwaitUncaught", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorAwaitResolveClosure", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorAwaitRejectClosure", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorYieldWithAwaitResolveClosure", - "timestamp": 6125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorReturnClosedResolveClosure", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorReturnClosedRejectClosure", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncGeneratorReturnResolveClosure", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFromSyncIteratorPrototypeNext", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFromSyncIteratorPrototypeThrow", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncFromSyncIteratorPrototypeReturn", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncIteratorValueUnwrap", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CEntry_Return1_ArgvInRegister_NoBuiltinExit", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CEntry_Return1_ArgvOnStack_BuiltinExit", - "timestamp": 6167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CEntry_Return1_ArgvOnStack_NoBuiltinExit", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CEntry_Return2_ArgvInRegister_NoBuiltinExit", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CEntry_Return2_ArgvOnStack_BuiltinExit", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CEntry_Return2_ArgvOnStack_NoBuiltinExit", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DirectCEntry", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringAdd_CheckNone", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SubString", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DoubleToI", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetProperty", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetPropertyWithReceiver", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SetProperty", - "timestamp": 6209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateDataProperty", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetOwnPropertyDescriptor", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MemCopyUint8Uint8", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MemMove", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FindNonDefaultConstructorOrConstruct", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "OrdinaryGetOwnPropertyDescriptor", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IsTraceCategoryEnabled", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Trace", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FinalizationRegistryUnregister", - "timestamp": 6250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AsyncModuleEvaluate", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallAsyncModuleFulfilled", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallAsyncModuleRejected", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowTimeZone", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowInstant", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowPlainDateTime", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowPlainDateTimeISO", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowZonedDateTime", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowZonedDateTimeISO", - "timestamp": 6292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowPlainDate", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowPlainDateISO", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalNowPlainTimeISO", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateConstructor", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateFrom", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateCompare", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeCalendar", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeYear", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeMonth", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeMonthCode", - "timestamp": 6334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeDay", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeDayOfWeek", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeDayOfYear", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeWeekOfYear", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeDaysInWeek", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeDaysInMonth", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeDaysInYear", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeMonthsInYear", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeInLeapYear", - "timestamp": 6375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToPlainYearMonth", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToPlainMonthDay", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeGetISOFields", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeAdd", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeSubtract", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeWith", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeWithCalendar", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeUntil", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeSince", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeEquals", - "timestamp": 6417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToPlainDateTime", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToZonedDateTime", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToString", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToJSON", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeToLocaleString", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeValueOf", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimeConstructor", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimeFrom", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimeCompare", - "timestamp": 6459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeCalendar", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeHour", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeMinute", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeSecond", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeMillisecond", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeMicrosecond", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeNanosecond", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeAdd", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeSubtract", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeWith", - "timestamp": 6500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeUntil", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeSince", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeRound", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeEquals", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeToPlainDateTime", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeToZonedDateTime", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeGetISOFields", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeToString", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeToJSON", - "timestamp": 6542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeToLocaleString", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainTimePrototypeValueOf", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimeConstructor", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimeFrom", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimeCompare", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeCalendar", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeYear", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeMonth", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeMonthCode", - "timestamp": 6584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeDay", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeHour", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeMinute", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeSecond", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeMillisecond", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeMicrosecond", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeNanosecond", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeDayOfWeek", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeDayOfYear", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeWeekOfYear", - "timestamp": 6625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeDaysInWeek", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeDaysInMonth", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeDaysInYear", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeMonthsInYear", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeInLeapYear", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeWith", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeWithPlainTime", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeWithPlainDate", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeWithCalendar", - "timestamp": 6667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeAdd", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeSubtract", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeUntil", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeSince", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeRound", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeEquals", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToString", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToJSON", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToLocaleString", - "timestamp": 6709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeValueOf", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToZonedDateTime", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToPlainDate", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToPlainYearMonth", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToPlainMonthDay", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeToPlainTime", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeGetISOFields", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimeConstructor", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimeFrom", - "timestamp": 6750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimeCompare", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeCalendar", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeTimeZone", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeYear", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeMonth", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeMonthCode", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeDay", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeHour", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeMinute", - "timestamp": 6792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeSecond", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeMillisecond", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeMicrosecond", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeNanosecond", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEpochSeconds", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEpochMilliseconds", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEpochMicroseconds", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEpochNanoseconds", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeDayOfWeek", - "timestamp": 6834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeDayOfYear", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeWeekOfYear", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeHoursInDay", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeDaysInWeek", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeDaysInMonth", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeDaysInYear", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeMonthsInYear", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeInLeapYear", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeOffsetNanoseconds", - "timestamp": 6875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeOffset", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeWith", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeWithPlainTime", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeWithPlainDate", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeWithTimeZone", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeWithCalendar", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeAdd", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeSubtract", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeUntil", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeSince", - "timestamp": 6917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeRound", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEquals", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToString", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToJSON", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToLocaleString", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeValueOf", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeStartOfDay", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToInstant", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToPlainDate", - "timestamp": 6959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToPlainTime", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToPlainDateTime", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToPlainYearMonth", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeToPlainMonthDay", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeGetISOFields", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationConstructor", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationFrom", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationCompare", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeYears", - "timestamp": 7000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeMonths", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeWeeks", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeDays", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeHours", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeMinutes", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeSeconds", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeMilliseconds", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeMicroseconds", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeNanoseconds", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeSign", - "timestamp": 7042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeBlank", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeWith", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeNegated", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeAbs", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeAdd", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeSubtract", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeRound", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeTotal", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeToString", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeToJSON", - "timestamp": 7084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeToLocaleString", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalDurationPrototypeValueOf", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantConstructor", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantFrom", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantFromEpochSeconds", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantFromEpochMilliseconds", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantFromEpochMicroseconds", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantFromEpochNanoseconds", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantCompare", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeEpochSeconds", - "timestamp": 7125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeEpochMilliseconds", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeEpochMicroseconds", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeEpochNanoseconds", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeAdd", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeSubtract", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeUntil", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeSince", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeRound", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeEquals", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeToString", - "timestamp": 7167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeToJSON", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeToLocaleString", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeValueOf", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeToZonedDateTime", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantPrototypeToZonedDateTimeISO", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthConstructor", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthFrom", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthCompare", - "timestamp": 7209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeCalendar", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeYear", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeMonth", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeMonthCode", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeDaysInYear", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeDaysInMonth", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeMonthsInYear", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeInLeapYear", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeWith", - "timestamp": 7250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeAdd", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeSubtract", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeUntil", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeSince", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeEquals", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeToString", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeToJSON", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeToLocaleString", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeValueOf", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeToPlainDate", - "timestamp": 7292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeGetISOFields", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayConstructor", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayFrom", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeCalendar", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeMonthCode", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeDay", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeWith", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeEquals", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeToString", - "timestamp": 7334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeToJSON", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeToLocaleString", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeValueOf", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeToPlainDate", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainMonthDayPrototypeGetISOFields", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZoneConstructor", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZoneFrom", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeId", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetOffsetNanosecondsFor", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetOffsetStringFor", - "timestamp": 7375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetPlainDateTimeFor", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetInstantFor", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetPossibleInstantsFor", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetNextTransition", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeGetPreviousTransition", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeToString", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalTimeZonePrototypeToJSON", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarConstructor", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarFrom", - "timestamp": 7417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeId", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDateFromFields", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeYearMonthFromFields", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeMonthDayFromFields", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDateAdd", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDateUntil", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeYear", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeMonth", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeMonthCode", - "timestamp": 7459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDay", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDayOfWeek", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDayOfYear", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeWeekOfYear", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDaysInWeek", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDaysInMonth", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeDaysInYear", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeMonthsInYear", - "timestamp": 7500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeInLeapYear", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeFields", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeMergeFields", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeToString", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeToJSON", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToTemporalInstant", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringFixedArrayFromIterable", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalInstantFixedArrayFromIterable", - "timestamp": 7542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "AggregateErrorConstructor", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeAt", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeConcat", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeCopyWithin", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayEveryLoopEagerDeoptContinuation", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayEveryLoopLazyDeoptContinuation", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayEveryLoopContinuation", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayEvery", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFilterLoopEagerDeoptContinuation", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFilterLoopLazyDeoptContinuation", - "timestamp": 7584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFilterLoopContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFilter", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindLoopEagerDeoptContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindLoopLazyDeoptContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindLoopAfterCallbackLazyDeoptContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindLoopContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFind", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindIndexLoopEagerDeoptContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindIndexLoopLazyDeoptContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindIndexLoopAfterCallbackLazyDeoptContinuation", - "timestamp": 7625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindIndexLoopContinuation", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFindIndex", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindLastLoopContinuation", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFindLast", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFindLastIndexLoopContinuation", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeFindLastIndex", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayForEachLoopEagerDeoptContinuation", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayForEachLoopLazyDeoptContinuation", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayForEachLoopContinuation", - "timestamp": 7667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayForEach", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayFrom", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayIsArray", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinElement_DictionaryElements_0", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinElement_FastSmiOrObjectElements_0", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinElement_FastDoubleElements_0", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ConvertToLocaleString", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JoinStackPush", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "JoinStackPop", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeJoin", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeToLocaleString", - "timestamp": 7709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeToString", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeJoin", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeToLocaleString", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeLastIndexOf", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayMapPreLoopLazyDeoptContinuation", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayMapLoopEagerDeoptContinuation", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayMapLoopLazyDeoptContinuation", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayMapLoopContinuation", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayMap", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayOf", - "timestamp": 7750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceRightPreLoopEagerDeoptContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceRightLoopEagerDeoptContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceRightLoopLazyDeoptContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceRightLoopContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceRight", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReducePreLoopEagerDeoptContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceLoopEagerDeoptContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceLoopLazyDeoptContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduceLoopContinuation", - "timestamp": 7792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayReduce", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeReverse", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeShift", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeSlice", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySomeLoopEagerDeoptContinuation", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySomeLoopLazyDeoptContinuation", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySomeLoopContinuation", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArraySome", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeSplice", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GenericArrayToReversed", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeToReversed", - "timestamp": 7834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayTimSortIntoCopy", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeToSorted", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeToSpliced", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeUnshift", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GenericArrayWith", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeWith", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeGetByteLength", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeGetMaxByteLength", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeGetResizable", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferPrototypeGetDetached", - "timestamp": 7875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedArrayBufferPrototypeGetMaxByteLength", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SharedArrayBufferPrototypeGetGrowable", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayBufferIsView", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToInteger", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastCreateDataProperty", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CheckSameObject", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BooleanConstructor", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BooleanPrototypeToString", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BooleanPrototypeValueOf", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntAddNoThrow", - "timestamp": 7917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntAdd", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntSubtractNoThrow", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntSubtract", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntMultiplyNoThrow", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntMultiply", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntDivideNoThrow", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntDivide", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntModulusNoThrow", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntModulus", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntBitwiseAndNoThrow", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntBitwiseAnd", - "timestamp": 7959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntBitwiseOrNoThrow", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntBitwiseOr", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntBitwiseXorNoThrow", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntBitwiseXor", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntShiftLeftNoThrow", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntShiftLeft", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntShiftRightNoThrow", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntShiftRight", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntEqual", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntLessThan", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntGreaterThan", - "timestamp": 8000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntLessThanOrEqual", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntGreaterThanOrEqual", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BigIntUnaryMinus", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToString", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeToString", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeValueOf", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringToList", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeCharAt", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeCharCodeAt", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeCodePointAt", - "timestamp": 8042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeConcat", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringConstructor", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringAddConvertLeft", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringAddConvertRight", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringCharAt", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewClosureBaseline", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewFunctionContextEval", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewFunctionContextFunction", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateRegExpLiteral", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateShallowArrayLiteral", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateEmptyArrayLiteral", - "timestamp": 8084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateShallowObjectLiteral", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectConstructor", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateEmptyLiteralObject", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberConstructor", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GenericLazyDeoptContinuation", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringToNumber", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NonNumberToNumber", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NonNumberToNumeric", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToNumeric", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberToString", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToBoolean", - "timestamp": 8125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToBooleanForBaselineJump", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToLength", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToName", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ToObject", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NonPrimitiveToPrimitive_Default", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NonPrimitiveToPrimitive_Number", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NonPrimitiveToPrimitive_String", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "OrdinaryToPrimitive_Number", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "OrdinaryToPrimitive_Number_Inline", - "timestamp": 8167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "OrdinaryToPrimitive_String", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastConsoleAssert", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetBuffer", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetByteLength", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetByteOffset", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetUint8", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetInt8", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetUint16", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetInt16", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetUint32", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetInt32", - "timestamp": 8209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetFloat32", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetFloat64", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetBigUint64", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeGetBigInt64", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetUint8", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetInt8", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetUint16", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetInt16", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetUint32", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetInt32", - "timestamp": 8250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetFloat32", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetFloat64", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetBigUint64", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DataViewPrototypeSetBigInt64", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FinalizationRegistryConstructor", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FinalizationRegistryRegister", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FinalizationRegistryPrototypeCleanupSome", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FunctionPrototypeHasInstance", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastFunctionPrototypeBind", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IncBlockCounter", - "timestamp": 8292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetTemplateObject", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ForInNext", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetImportMetaObjectBaseline", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetIteratorWithFeedback", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GetIteratorBaseline", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateAsyncFromSyncIteratorBaseline", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallIteratorWithFeedback", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorConstructor", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorFrom", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WrapForValidIteratorPrototypeNext", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WrapForValidIteratorPrototypeReturn", - "timestamp": 8334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorHelperPrototypeNext", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorHelperPrototypeReturn", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorPrototypeMap", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorMapHelperNext", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorPrototypeFilter", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorFilterHelperNext", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorPrototypeTake", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorTakeHelperNext", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorPrototypeDrop", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IteratorDropHelperNext", - "timestamp": 8375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAbs", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathCeil", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathFloor", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathRound", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathTrunc", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathPow", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathMax", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathMin", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAcos", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAcosh", - "timestamp": 8417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAsin", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAsinh", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAtan", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAtan2", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathAtanh", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathCbrt", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathClz32", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathCos", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathCosh", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathExp", - "timestamp": 8459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathExpm1", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathFround", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathImul", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathLog", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathLog1p", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathLog10", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathLog2", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathSin", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathSign", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathSinh", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathSqrt", - "timestamp": 8500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathTan", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathTanh", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathHypot", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MathRandom", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberPrototypeToString", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberIsFinite", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberIsInteger", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberIsNaN", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberIsSafeInteger", - "timestamp": 8542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberPrototypeValueOf", - "timestamp": 8584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberParseFloat", - "timestamp": 8584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ParseInt", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberParseInt", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Add", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Subtract", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Multiply", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Divide", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Modulus", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Exponentiate", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Negate", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseNot", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Decrement", - "timestamp": 8625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Increment", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftLeft", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRight", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ShiftRightLogical", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseAnd", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseOr", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "BitwiseXor", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LessThan", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LessThanOrEqual", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GreaterThan", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GreaterThanOrEqual", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Equal", - "timestamp": 8667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StrictEqual", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectFromEntries", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateObjectWithoutProperties", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectIsExtensible", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPreventExtensions", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectGetPrototypeOf", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectSetPrototypeOf", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeToString", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeValueOf", - "timestamp": 8709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ObjectPrototypeToLocaleString", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FulfillPromise", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RejectPromise", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NewPromiseCapability", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseCapabilityDefaultReject", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseCapabilityDefaultResolve", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PerformPromiseThen", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseReject", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseGetCapabilitiesExecutor", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseConstructorLazyDeoptContinuation", - "timestamp": 8750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAll", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAllSettled", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAllResolveElementClosure", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAllSettledResolveElementClosure", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAllSettledRejectElementClosure", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAnyRejectElementClosure", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseAny", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseConstructor", - "timestamp": 8792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromisePrototypeCatch", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseValueThunkFinally", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseThrowerFinally", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseCatchFinally", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseThenFinally", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromisePrototypeFinally", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseRace", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseFulfillReactionJob", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseRejectReactionJob", - "timestamp": 8834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseResolveTrampoline", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseResolve", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ResolvePromise", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromisePrototypeThen", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PromiseResolveThenableJob", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyConstructor", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyDeleteProperty", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyGetProperty", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyGetPrototypeOf", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyHasProperty", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyIsExtensible", - "timestamp": 8875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyPreventExtensions", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyRevocable", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxyRevoke", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxySetProperty", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ProxySetPrototypeOf", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectIsExtensible", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectPreventExtensions", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectGetPrototypeOf", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectSetPrototypeOf", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectGet", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectDeleteProperty", - "timestamp": 8917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectHas", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReflectGetOwnPropertyDescriptor", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeExecSlow", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeExec", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeMatchAll", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpStringIteratorPrototypeNext", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpMatchFast", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeMatch", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpReplace", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeReplace", - "timestamp": 8959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpSearchFast", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeSearch", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeSourceGetter", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpSplit", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeSplit", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeTest", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeTestFast", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeGlobalGetter", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeIgnoreCaseGetter", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeMultilineGetter", - "timestamp": 9000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeHasIndicesGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeLinearGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeDotAllGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeStickyGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeUnicodeGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeUnicodeSetsGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RegExpPrototypeFlagsGetter", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeAt", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeEndsWith", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateHTML", - "timestamp": 9042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeAnchor", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeBig", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeBlink", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeBold", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeFontcolor", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeFontsize", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeFixed", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeItalics", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeLink", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSmall", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeStrike", - "timestamp": 9084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSub", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSup", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeIncludes", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeIndexOf", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeIsWellFormed", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeIterator", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringIteratorPrototypeNext", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeMatch", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSearch", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypePadStart", - "timestamp": 9125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypePadEnd", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringRepeat", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeRepeat", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeReplaceAll", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSlice", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeStartsWith", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSubstr", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeSubstring", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeToWellFormed", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeTrim", - "timestamp": 9167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeTrimStart", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeTrimEnd", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolPrototypeDescriptionGetter", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolPrototypeToPrimitive", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolPrototypeToString", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SymbolPrototypeValueOf", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeAt", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CreateTypedArray", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeEvery", - "timestamp": 9209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeEntries", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeFilter", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeFind", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeFindIndex", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeFindLast", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeFindLastIndex", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeForEach", - "timestamp": 9250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayFrom", - "timestamp": 9292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeKeys", - "timestamp": 9292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayOf", - "timestamp": 9292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeReduce", - "timestamp": 9292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeReduceRight", - "timestamp": 9292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeSet", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeSlice", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeSome", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayMergeSort", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeSort", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeSubArray", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeToReversed", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeToSorted", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeValues", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TypedArrayPrototypeWith", - "timestamp": 9334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakRefConstructor", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WeakRefDeref", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NewSloppyArgumentsElements", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NewStrictArgumentsElements", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NewRestArgumentsElements", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewSloppyArguments", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewStrictArguments", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "FastNewRestArguments", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringSlowFlatten", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringIndexOf", - "timestamp": 9375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TestTurbofanType", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CheckTurbofanType", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CheckTurboshaftWord32Type", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CheckTurboshaftWord64Type", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CheckTurboshaftFloat32Type", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CheckTurboshaftFloat64Type", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GenericBuiltinTest_JSAny_0", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TestHelperPlus1", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TestHelperPlus2", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NewSmiBox", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ReturnTwoValues", - "timestamp": 9417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Load_FastSmiElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Load_FastObjectElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Load_FastDoubleElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Store_FastSmiElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Store_FastObjectElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Store_FastDoubleElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Delete_FastSmiElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Delete_FastObjectElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Delete_FastDoubleElements_0", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SortCompareDefault", - "timestamp": 9459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SortCompareUserFn", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CanUseSameAccessor_GenericElementsAccessor_0", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Copy", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "MergeAt", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GallopLeft", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GallopRight", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayTimSort", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ArrayPrototypeSort", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringFastLocaleCompare", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmInt32ToHeapNumber", - "timestamp": 9500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmFuncRefToJS", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTaggedNonSmiToInt32", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTaggedToFloat64", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmMemoryGrow", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableInit", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableCopy", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableFill", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableGrow", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableGet", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableSet", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableGetFuncRef", - "timestamp": 9542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTableSetFuncRef", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmRefFunc", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmAllocateFixedArray", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmThrow", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmRethrow", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmRethrowExplicitContext", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTriggerTierUp", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStackGuard", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStackOverflow", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTraceMemory", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTraceEnter", - "timestamp": 9584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTraceExit", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmAllocateJSArray", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmAllocateStructWithRtt", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmAllocateArray_Uninitialized", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmArrayNewSegment", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmArrayCopyWithChecks", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmArrayCopy", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmAllocateObjectWrapper", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmSubtypeCheck", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmInt32ToNumber", - "timestamp": 9625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmUint32ToNumber", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "UintPtr53ToNumber", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmAtomicNotify", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmI32AtomicWait", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmI64AtomicWait", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CallRefIC", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmGetOwnProperty", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmTrap", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapUnreachable", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapMemOutOfBounds", - "timestamp": 9667, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapUnalignedAccess", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapDivByZero", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapDivUnrepresentable", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapRemByZero", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapFloatUnrepresentable", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapFuncSigMismatch", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapDataSegmentOutOfBounds", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapElementSegmentOutOfBounds", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapTableOutOfBounds", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapRethrowNull", - "timestamp": 9709, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapNullDereference", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapIllegalCast", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapArrayOutOfBounds", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapArrayTooLarge", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowWasmTrapStringOffsetOutOfBounds", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ExperimentalWasmConvertArrayToString", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ExperimentalWasmConvertStringToArray", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringNewWtf8", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringNewWtf8Array", - "timestamp": 9750, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringNewWtf16", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringNewWtf16Array", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringAsWtf16", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringConst", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringMeasureUtf8", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringMeasureWtf8", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringEncodeWtf8", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringEncodeWtf8Array", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringEncodeWtf16", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringEncodeWtf16Array", - "timestamp": 9792, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ThrowToLowerCaseCalledOnNull", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringConcat", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringEqual", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringIsUSVSequence", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringAsWtf8", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewWtf8Advance", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewWtf8Encode", - "timestamp": 9834, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewWtf8Slice", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewWtf16GetCodeUnit", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewWtf16Encode", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewWtf16Slice", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringAsIter", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewIterNext", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewIterAdvance", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewIterRewind", - "timestamp": 9875, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringViewIterSlice", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringFromCodePoint", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmStringHash", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "WasmExternInternalize", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinElement_GenericElementsAccessor_0", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Int32Elements_0", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Float32Elements_0", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Float64Elements_0", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Uint8ClampedElements_0", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_BigUint64Elements_0", - "timestamp": 9917, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_BigInt64Elements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Uint8Elements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Int8Elements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Uint16Elements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Int16Elements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadJoinTypedElement_Uint32Elements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "GenericBuiltinTest_Smi_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CanUseSameAccessor_FastDoubleElements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CanUseSameAccessor_FastSmiElements_0", - "timestamp": 9959, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CanUseSameAccessor_FastObjectElements_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadNoHasPropertyCheck_GenericElementsAccessor_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Load_GenericElementsAccessor_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Store_GenericElementsAccessor_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Delete_GenericElementsAccessor_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Int32Elements_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Int32Elements_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Int32Elements_0", - "timestamp": 10000, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Float32Elements_0", - "timestamp": 10042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Float32Elements_0", - "timestamp": 10042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Float32Elements_0", - "timestamp": 10042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Float64Elements_0", - "timestamp": 10042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Float64Elements_0", - "timestamp": 10042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Float64Elements_0", - "timestamp": 10042, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Uint8ClampedElements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Uint8ClampedElements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Uint8ClampedElements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_BigUint64Elements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_BigUint64Elements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_BigUint64Elements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_BigInt64Elements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_BigInt64Elements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_BigInt64Elements_0", - "timestamp": 10084, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Uint8Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Uint8Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Uint8Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Int8Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Int8Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Int8Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Uint16Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Uint16Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Uint16Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Int16Elements_0", - "timestamp": 10125, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Int16Elements_0", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Int16Elements_0", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LoadTypedElement_Uint32Elements_0", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementNumeric_Uint32Elements_0", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StoreTypedElementJSAny_Uint32Elements_0", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CollatorConstructor", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CollatorInternalCompare", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CollatorPrototypeCompare", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CollatorSupportedLocalesOf", - "timestamp": 10167, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "CollatorPrototypeResolvedOptions", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToLocaleDateString", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToLocaleString", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DatePrototypeToLocaleTimeString", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatConstructor", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatInternalFormat", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatPrototypeFormat", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatPrototypeFormatRange", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatPrototypeFormatRangeToParts", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatPrototypeFormatToParts", - "timestamp": 10209, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatPrototypeResolvedOptions", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DateTimeFormatSupportedLocalesOf", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DisplayNamesConstructor", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DisplayNamesPrototypeOf", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DisplayNamesPrototypeResolvedOptions", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DisplayNamesSupportedLocalesOf", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DurationFormatConstructor", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DurationFormatPrototypeFormat", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DurationFormatPrototypeFormatToParts", - "timestamp": 10250, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DurationFormatPrototypeResolvedOptions", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "DurationFormatSupportedLocalesOf", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IntlGetCanonicalLocales", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "IntlSupportedValuesOf", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ListFormatConstructor", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ListFormatPrototypeFormat", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ListFormatPrototypeFormatToParts", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ListFormatPrototypeResolvedOptions", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "ListFormatSupportedLocalesOf", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocaleConstructor", - "timestamp": 10292, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeBaseName", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeCalendar", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeCalendars", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeCaseFirst", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeCollation", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeCollations", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeHourCycle", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeHourCycles", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeLanguage", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeMaximize", - "timestamp": 10334, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeMinimize", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeNumeric", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeNumberingSystem", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeNumberingSystems", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeRegion", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeScript", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeTextInfo", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeTimeZones", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeToString", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "LocalePrototypeWeekInfo", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatConstructor", - "timestamp": 10375, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatInternalFormatNumber", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatPrototypeFormatNumber", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatPrototypeFormatRange", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatPrototypeFormatRangeToParts", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatPrototypeFormatToParts", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatPrototypeResolvedOptions", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "NumberFormatSupportedLocalesOf", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PluralRulesConstructor", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PluralRulesPrototypeResolvedOptions", - "timestamp": 10417, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PluralRulesPrototypeSelect", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PluralRulesPrototypeSelectRange", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "PluralRulesSupportedLocalesOf", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RelativeTimeFormatConstructor", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RelativeTimeFormatPrototypeFormat", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RelativeTimeFormatPrototypeFormatToParts", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RelativeTimeFormatPrototypeResolvedOptions", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "RelativeTimeFormatSupportedLocalesOf", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmenterConstructor", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmenterPrototypeResolvedOptions", - "timestamp": 10459, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmenterPrototypeSegment", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmenterSupportedLocalesOf", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmentIteratorPrototypeNext", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmentsPrototypeContaining", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "SegmentsPrototypeIterator", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeNormalizeIntl", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeToLocaleLowerCase", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeToLocaleUpperCase", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeToLowerCaseIntl", - "timestamp": 10500, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringPrototypeToUpperCaseIntl", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "StringToLowerCaseIntl", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeEra", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalCalendarPrototypeEraYear", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeEra", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDatePrototypeEraYear", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeEra", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainDateTimePrototypeEraYear", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeEra", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalPlainYearMonthPrototypeEraYear", - "timestamp": 10542, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEra", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "TemporalZonedDateTimePrototypeEraYear", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorConstructor", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorInternalAdoptText", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorInternalBreakType", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorInternalCurrent", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorInternalFirst", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorInternalNext", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorPrototypeAdoptText", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorPrototypeBreakType", - "timestamp": 10584, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorPrototypeCurrent", - "timestamp": 10625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorPrototypeFirst", - "timestamp": 10625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorPrototypeNext", - "timestamp": 10625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorPrototypeResolvedOptions", - "timestamp": 10625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "V8BreakIteratorSupportedLocalesOf", - "timestamp": 10625, - "type": "CODE", - "kind": "Builtin" - }, - { - "name": "Wide", - "timestamp": 10625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ExtraWide", - "timestamp": 10625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreakWide", - "timestamp": 10625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreakExtraWide", - "timestamp": 10625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak0", - "timestamp": 10625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak1", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak2", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak3", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak4", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak5", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak6", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Ldar", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaZero", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaSmi", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaUndefined", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaNull", - "timestamp": 10667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaTheHole", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaTrue", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaFalse", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaConstant", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaContextSlot", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaImmutableContextSlot", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaCurrentContextSlot", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaImmutableCurrentContextSlot", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Star", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mov", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "PushContext", - "timestamp": 10709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "PopContext", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestReferenceEqual", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestUndetectable", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestNull", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestUndefined", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestTypeOf", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaGlobal", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaGlobalInsideTypeof", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaGlobal", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaContextSlot", - "timestamp": 10750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaCurrentContextSlot", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupSlot", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupContextSlot", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupGlobalSlot", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupSlotInsideTypeof", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupContextSlotInsideTypeof", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupGlobalSlotInsideTypeof", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaLookupSlot", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetNamedProperty", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetNamedPropertyFromSuper", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetKeyedProperty", - "timestamp": 10792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaModuleVariable", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaModuleVariable", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetNamedProperty", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineNamedOwnProperty", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetKeyedProperty", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineKeyedOwnProperty", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaInArrayLiteral", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineKeyedOwnPropertyInLiteral", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Add", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Sub", - "timestamp": 10834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mul", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Div", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mod", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Exp", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseOr", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseXor", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseAnd", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftLeft", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRight", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightLogical", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "AddSmi", - "timestamp": 10875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SubSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "MulSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DivSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ModSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ExpSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseOrSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseXorSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseAndSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftLeftSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightLogicalSmi", - "timestamp": 10917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Inc", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Dec", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Negate", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseNot", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToBooleanLogicalNot", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LogicalNot", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TypeOf", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DeletePropertyStrict", - "timestamp": 10959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DeletePropertySloppy", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetSuperConstructor", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "FindNonDefaultConstructorOrConstruct", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallAnyReceiver", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty0", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty1", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty2", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver0", - "timestamp": 11000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver1", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver2", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallWithSpread", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallRuntime", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallRuntimeForPair", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallJSRuntime", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "InvokeIntrinsic", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Construct", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ConstructWithSpread", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestEqual", - "timestamp": 11042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestEqualStrict", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestLessThan", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestGreaterThan", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestLessThanOrEqual", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestGreaterThanOrEqual", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestInstanceOf", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestIn", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToName", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToNumber", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToNumeric", - "timestamp": 11084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToObject", - "timestamp": 11125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToString", - "timestamp": 11125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateRegExpLiteral", - "timestamp": 11125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateArrayLiteral", - "timestamp": 11125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateArrayFromIterable", - "timestamp": 11125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEmptyArrayLiteral", - "timestamp": 11167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateObjectLiteral", - "timestamp": 11167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEmptyObjectLiteral", - "timestamp": 11167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CloneObject", - "timestamp": 11167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetTemplateObject", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateClosure", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateBlockContext", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateCatchContext", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateFunctionContext", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEvalContext", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateWithContext", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateMappedArguments", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateUnmappedArguments", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateRestParameter", - "timestamp": 11209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpLoop", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Jump", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpConstant", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNullConstant", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotNullConstant", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedConstant", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotUndefinedConstant", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedOrNullConstant", - "timestamp": 11250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfTrueConstant", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfFalseConstant", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfJSReceiverConstant", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanTrueConstant", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanFalseConstant", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanTrue", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanFalse", - "timestamp": 11292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfTrue", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfFalse", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNull", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotNull", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefined", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotUndefined", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedOrNull", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfJSReceiver", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SwitchOnSmiNoFeedback", - "timestamp": 11334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInEnumerate", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInPrepare", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInContinue", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInNext", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInStep", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetPendingMessage", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Throw", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ReThrow", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Return", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowReferenceErrorIfHole", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowSuperNotCalledIfHole", - "timestamp": 11375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowSuperAlreadyCalledIfNotHole", - "timestamp": 11417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowIfNotSuperConstructor", - "timestamp": 11417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SwitchOnGeneratorState", - "timestamp": 11417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SuspendGenerator", - "timestamp": 11417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ResumeGenerator", - "timestamp": 11459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetIterator", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Debugger", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "IncBlockCounter", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Abort", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Star0", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Illegal", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak1.Wide", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak2.Wide", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak3.Wide", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak4.Wide", - "timestamp": 11500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak5.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak6.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Ldar.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaSmi.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaConstant.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaContextSlot.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaImmutableContextSlot.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaCurrentContextSlot.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaImmutableCurrentContextSlot.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Star.Wide", - "timestamp": 11542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mov.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "PushContext.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "PopContext.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestReferenceEqual.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaGlobal.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaGlobalInsideTypeof.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaGlobal.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaContextSlot.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaCurrentContextSlot.Wide", - "timestamp": 11584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupSlot.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupContextSlot.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupGlobalSlot.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupSlotInsideTypeof.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupContextSlotInsideTypeof.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupGlobalSlotInsideTypeof.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaLookupSlot.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetNamedProperty.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetNamedPropertyFromSuper.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetKeyedProperty.Wide", - "timestamp": 11625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaModuleVariable.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaModuleVariable.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetNamedProperty.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineNamedOwnProperty.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetKeyedProperty.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineKeyedOwnProperty.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaInArrayLiteral.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineKeyedOwnPropertyInLiteral.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Add.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Sub.Wide", - "timestamp": 11667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mul.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Div.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mod.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Exp.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseOr.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseXor.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseAnd.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftLeft.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRight.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightLogical.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "AddSmi.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SubSmi.Wide", - "timestamp": 11709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "MulSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DivSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ModSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ExpSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseOrSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseXorSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseAndSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftLeftSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightLogicalSmi.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Inc.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Dec.Wide", - "timestamp": 11750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Negate.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseNot.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DeletePropertyStrict.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DeletePropertySloppy.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetSuperConstructor.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "FindNonDefaultConstructorOrConstruct.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallAnyReceiver.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty0.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty1.Wide", - "timestamp": 11792, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty2.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver0.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver1.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver2.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallWithSpread.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallRuntime.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallRuntimeForPair.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallJSRuntime.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "InvokeIntrinsic.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Construct.Wide", - "timestamp": 11834, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ConstructWithSpread.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestEqual.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestEqualStrict.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestLessThan.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestGreaterThan.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestLessThanOrEqual.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestGreaterThanOrEqual.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestInstanceOf.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestIn.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToName.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToNumber.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToNumeric.Wide", - "timestamp": 11875, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToObject.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateRegExpLiteral.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateArrayLiteral.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEmptyArrayLiteral.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateObjectLiteral.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CloneObject.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetTemplateObject.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateClosure.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateBlockContext.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateCatchContext.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateFunctionContext.Wide", - "timestamp": 11917, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEvalContext.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateWithContext.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpLoop.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Jump.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpConstant.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNullConstant.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotNullConstant.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedConstant.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotUndefinedConstant.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedOrNullConstant.Wide", - "timestamp": 11959, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfTrueConstant.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfFalseConstant.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfJSReceiverConstant.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanTrueConstant.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanFalseConstant.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanTrue.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanFalse.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfTrue.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfFalse.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNull.Wide", - "timestamp": 12000, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotNull.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefined.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotUndefined.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedOrNull.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfJSReceiver.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SwitchOnSmiNoFeedback.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInEnumerate.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInPrepare.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInContinue.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInNext.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInStep.Wide", - "timestamp": 12042, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowReferenceErrorIfHole.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowIfNotSuperConstructor.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SwitchOnGeneratorState.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SuspendGenerator.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ResumeGenerator.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetIterator.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "IncBlockCounter.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Abort.Wide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak1.ExtraWide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak2.ExtraWide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak3.ExtraWide", - "timestamp": 12084, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak4.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak5.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DebugBreak6.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Ldar.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaSmi.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaConstant.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaContextSlot.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaImmutableContextSlot.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaCurrentContextSlot.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaImmutableCurrentContextSlot.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Star.ExtraWide", - "timestamp": 12125, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mov.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "PushContext.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "PopContext.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestReferenceEqual.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaGlobal.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaGlobalInsideTypeof.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaGlobal.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaContextSlot.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaCurrentContextSlot.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupSlot.ExtraWide", - "timestamp": 12167, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupContextSlot.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupGlobalSlot.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupSlotInsideTypeof.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupContextSlotInsideTypeof.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaLookupGlobalSlotInsideTypeof.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaLookupSlot.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetNamedProperty.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetNamedPropertyFromSuper.ExtraWide", - "timestamp": 12209, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetKeyedProperty.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "LdaModuleVariable.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaModuleVariable.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetNamedProperty.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineNamedOwnProperty.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SetKeyedProperty.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineKeyedOwnProperty.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "StaInArrayLiteral.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DefineKeyedOwnPropertyInLiteral.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Add.ExtraWide", - "timestamp": 12250, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Sub.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mul.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Div.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Mod.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Exp.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseOr.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseXor.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseAnd.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftLeft.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRight.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightLogical.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "AddSmi.ExtraWide", - "timestamp": 12292, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SubSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "MulSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DivSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ModSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ExpSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseOrSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseXorSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseAndSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftLeftSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ShiftRightLogicalSmi.ExtraWide", - "timestamp": 12334, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Inc.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Dec.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Negate.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "BitwiseNot.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DeletePropertyStrict.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "DeletePropertySloppy.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetSuperConstructor.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "FindNonDefaultConstructorOrConstruct.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallAnyReceiver.ExtraWide", - "timestamp": 12375, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty0.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty1.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallProperty2.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver0.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver1.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallUndefinedReceiver2.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallWithSpread.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallRuntime.ExtraWide", - "timestamp": 12417, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallRuntimeForPair.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CallJSRuntime.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "InvokeIntrinsic.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Construct.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ConstructWithSpread.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestEqual.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestEqualStrict.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestLessThan.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestGreaterThan.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestLessThanOrEqual.ExtraWide", - "timestamp": 12459, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestGreaterThanOrEqual.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestInstanceOf.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "TestIn.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToName.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToNumber.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToNumeric.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ToObject.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateRegExpLiteral.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateArrayLiteral.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEmptyArrayLiteral.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateObjectLiteral.ExtraWide", - "timestamp": 12500, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CloneObject.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetTemplateObject.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateClosure.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateBlockContext.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateCatchContext.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateFunctionContext.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateEvalContext.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "CreateWithContext.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpLoop.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Jump.ExtraWide", - "timestamp": 12542, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpConstant.ExtraWide", - "timestamp": 12584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNullConstant.ExtraWide", - "timestamp": 12584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotNullConstant.ExtraWide", - "timestamp": 12584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedConstant.ExtraWide", - "timestamp": 12584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotUndefinedConstant.ExtraWide", - "timestamp": 12584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedOrNullConstant.ExtraWide", - "timestamp": 12584, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfTrueConstant.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfFalseConstant.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfJSReceiverConstant.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanTrueConstant.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanFalseConstant.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanTrue.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfToBooleanFalse.ExtraWide", - "timestamp": 12625, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfTrue.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfFalse.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNull.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotNull.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefined.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfNotUndefined.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfUndefinedOrNull.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "JumpIfJSReceiver.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SwitchOnSmiNoFeedback.ExtraWide", - "timestamp": 12667, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInEnumerate.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInPrepare.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInContinue.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInNext.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ForInStep.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowReferenceErrorIfHole.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ThrowIfNotSuperConstructor.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SwitchOnGeneratorState.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "SuspendGenerator.ExtraWide", - "timestamp": 12709, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "ResumeGenerator.ExtraWide", - "timestamp": 12750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "GetIterator.ExtraWide", - "timestamp": 12750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "IncBlockCounter.ExtraWide", - "timestamp": 12750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": "Abort.ExtraWide", - "timestamp": 12750, - "type": "CODE", - "kind": "BytecodeHandler" - }, - { - "name": " node:internal/main/run_main_module:1:1", - "type": "JS", - "kind": "Unopt", - "func": 0, - "tm": 15375, - "source": { - "script": 80, - "start": 0, - "end": 1182, - "positions": "C0O0C4O1182", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/main/run_main_module:1:1", - "type": "JS", - "kind": "Unopt", - "func": 1, - "tm": 15459, - "source": { - "script": 80, - "start": 0, - "end": 1182, - "positions": "C0O23C5O128C8O128C13O71C18O101C23O198C26O198C31O179C36O246C38O246C43O281C46O367C55O367C60O398C63O402C70O448C75O466C78O466C83O502C88O503C95O1114C98O1114C103O1152C108O1159C113O1160C119O1181", - "inlined": "", - "fns": [] - } - }, - { - "name": "prepareMainThreadExecution node:internal/process/pre_execution:54:36", - "type": "JS", - "kind": "Unopt", - "func": 2, - "tm": 15709, - "source": { - "script": 67, - "start": 1126, - "end": 1275, - "positions": "C20O1178C30O1208C36O1225C40O1185C44O1273", - "inlined": "", - "fns": [] - } - }, - { - "name": "prepareExecution node:internal/process/pre_execution:70:26", - "type": "JS", - "kind": "Unopt", - "func": 3, - "tm": 16584, - "source": { - "script": 67, - "start": 1503, - "end": 3672, - "positions": "C0O1525C5O1538C10O1557C15O1586C18O1586C21O1613C26O1613C29O1730C32O1730C37O1765C40O1765C43O1794C46O1794C49O1819C52O1819C55O1844C58O1844C61O1861C64O1861C67O1881C70O1881C73O1903C76O1903C79O1926C82O1926C85O2014C88O2014C91O2069C94O2069C97O2096C100O2096C103O2130C106O2130C109O2159C115O2159C120O2188C125O2189C129O2209C132O2209C135O2242C139O2266C150O2273C155O2298C160O2266C164O2401C167O2401C171O2427C173O2447C179O2447C184O2490C189O2504C194O2524C199O2491C205O2623C208O2623C211O2661C214O2661C217O2721C220O2721C223O3055C226O3055C229O3270C232O3270C235O3361C241O3361C246O3400C251O3401C257O3443C268O3451C273O3476C279O3443C283O3562C290O3570C292O3562C296O3597C300O3626C303O3626C306O3653C308O3670", - "inlined": "", - "fns": [] - } - }, - { - "name": "refreshRuntimeOptions node:internal/process/pre_execution:177:31", - "type": "JS", - "kind": "Unopt", - "func": 4, - "tm": 16625, - "source": { - "script": 67, - "start": 4871, - "end": 4897, - "positions": "C0O4878C5O4878C9O4896", - "inlined": "", - "fns": [] - } - }, - { - "name": "refreshOptions node:internal/options:39:24", - "type": "JS", - "kind": "Unopt", - "func": 5, - "tm": 16667, - "source": { - "script": 17, - "start": 902, - "end": 960, - "positions": "C0O909C4O920C10O935C14O946C21O959", - "inlined": "", - "fns": [] - } - }, - { - "name": "reconnectZeroFillToggle node:internal/buffer:1074:33", - "type": "JS", - "kind": "Unopt", - "func": 6, - "tm": 16792, - "source": { - "script": 25, - "start": 30714, - "end": 30754, - "positions": "C0O30721C5O30732C11O30730C18O30753", - "inlined": "", - "fns": [] - } - }, - { - "name": "patchProcessObject node:internal/process/pre_execution:188:28", - "type": "JS", - "kind": "Unopt", - "func": 7, - "tm": 17917, - "source": { - "script": 67, - "start": 5351, - "end": 7754, - "positions": "C0O5385C6O5385C11O5431C19O5431C24O5463C30O5463C35O5501C40O5502C44O5628C55O5649C62O5783C65O5783C75O5824C81O5828C88O5628C93O5842C97O5859C101O5874C105O5891C109O5902C112O5910C122O5928C126O5918C130O5969C132O6124C139O6151C146O6155C153O6169C159O6203C166O6207C173O6169C180O6285C186O6285C194O6335C202O6351C209O6355C213O6335C219O6367C222O6375C232O6383C242O6608C248O6608C253O6682C259O6682C264O6654C269O6725C273O6908C282O6908C287O6954C296O6954C301O7007C310O7007C315O7067C324O7067C329O7125C338O7125C343O7185C352O7185C357O7249C366O7249C371O7314C380O7314C385O7385C394O7385C399O7455C408O7455C413O7515C422O7515C427O7585C438O7585C443O7655C454O7655C459O7735C461O7752", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:internal/bootstrap/node:116:8", - "type": "JS", - "kind": "Unopt", - "func": 8, - "tm": 18084, - "source": { - "script": 12, - "start": 4131, - "end": 4547, - "positions": "C0O4146C8O4209C11O4223C19O4260C28O4280C35O4301C38O4301C43O4280C49O4329C54O4361C64O4361C69O4401C78O4408C83O4419C87O4436C96O4443C101O4457C107O4485C116O4492C120O4506C124O4525C126O4534C133O4546", - "inlined": "", - "fns": [] - } - }, - { - "name": "resolve node:path:1095:10", - "type": "JS", - "kind": "Unopt", - "func": 9, - "tm": 18709, - "source": { - "script": 34, - "start": 33911, - "end": 34827, - "positions": "C0O33911C3O33946C6O33977C8O34007C12O34014C16O34027C18O34021C25O34031C27O34075C28O34077C35O34088C42O34094C45O34094C49O34112C59O34142C70O34112C75O34193C81O34200C86O34217C88O34242C100O34268C105O34290C112O34317C120O34356C122O34352C126O34050C131O33989C135O34572C140O34618C151O34587C157O34704C161O34734C166O34745C170O34760C171O34791C177O34798C188O34823", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:path:1086:10", - "type": "JS", - "kind": "Unopt", - "func": 10, - "tm": 20375, - "source": { - "script": 34, - "start": 33760, - "end": 33779, - "positions": "C0O33774C3O33774C8O33774C12O33779", - "inlined": "", - "fns": [] - } - }, - { - "name": "wrappedCwd node:internal/bootstrap/switches/does_own_process_state:136:20", - "type": "JS", - "kind": "Unopt", - "func": 11, - "tm": 20417, - "source": { - "script": 73, - "start": 3560, - "end": 3644, - "positions": "C0O3567C7O3581C12O3593C17O3616C22O3616C29O3603C35O3625C39O3642", - "inlined": "", - "fns": [] - } - }, - { - "name": "normalizeString node:path:66:25", - "type": "JS", - "kind": "Unopt", - "func": 12, - "tm": 20709, - "source": { - "script": 34, - "start": 2161, - "end": 4085, - "positions": "C0O2226C3O2256C5O2277C8O2294C10O2310C12O2328C14O2341C18O2333C23O2373C27O2366C32O2387C37O2394C45O2443C51O2472C53O2494C58O2530C64O2561C66O2581C69O2575C76O2593C83O2631C85O2640C90O2665C97O2672C104O2697C111O2718C114O2753C118O2760C122O2718C130O2769C132O2765C139O2793C142O2828C146O2835C150O2793C158O2844C160O2840C165O2874C172O2881C177O2923C182O2923C188O2979C190O2998C195O3022C198O3046C202O3104C215O3110C221O3210C225O3217C231O3223C234O3223C239O3221C243O3293C246O3320C248O3342C250O3377C256O3384C261O3405C264O3427C266O3462C269O3489C271O3511C273O3551C277O3594C283O3601C293O3610C308O3642C313O3706C319O3713C324O3728C326O3738C330O3750C335O3787C345O3750C363O3821C370O3864C380O3827C386O3881C388O3903C391O3915C395O3934C398O3955C402O3976C404O3989C406O3985C413O4006C418O4022C425O4049C428O2351C433O2315C441O4072C443O4083", - "inlined": "", - "fns": [] - } - }, - { - "name": "isPosixPathSeparator node:path:56:30", - "type": "JS", - "kind": "Unopt", - "func": 13, - "tm": 20750, - "source": { - "script": 34, - "start": 1854, - "end": 1902, - "positions": "C0O1865C2O1881C4O1877C7O1900", - "inlined": "", - "fns": [] - } - }, - { - "name": "normalizeString node:path:66:25", - "type": "JS", - "kind": "Sparkplug", - "func": 12, - "tm": 20959, - "source": { - "script": 34, - "start": 2161, - "end": 4085, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "requireBuiltin node:internal/bootstrap/realm:414:24", - "type": "JS", - "kind": "Sparkplug", - "func": 14, - "tm": 21000, - "source": { - "script": 9, - "start": 13268, - "end": 13610, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "compileForInternalLoader node:internal/bootstrap/realm:377:27", - "type": "JS", - "kind": "Sparkplug", - "func": 15, - "tm": 21542, - "source": { - "script": 9, - "start": 12252, - "end": 13050, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "internalBinding node:internal/bootstrap/realm:185:45", - "type": "JS", - "kind": "Sparkplug", - "func": 16, - "tm": 21584, - "source": { - "script": 9, - "start": 5979, - "end": 6217, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "isPosixPathSeparator node:path:56:30", - "type": "JS", - "kind": "Sparkplug", - "func": 13, - "tm": 21584, - "source": { - "script": 34, - "start": 1854, - "end": 1902, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeGlobalConsole node:internal/console/constructor:690:33", - "type": "JS", - "kind": "Unopt", - "func": 17, - "tm": 21667, - "source": { - "script": 44, - "start": 20457, - "end": 21464, - "positions": "C0O20457C12O20477C19O20491C21O20490C30O20508C35O20521C42O20535C44O20534C53O20551C59O20662C67O20662C72O20593C77O20601C82O20629C87O20706C95O20711C100O20736C106O20754C111O20782C112O20789C113O20831C121O20831C126O20813C131O20887C143O20906C148O20887C153O20942C160O20942C165O20992C172O21018C177O21018C185O20992C191O21075C198O21075C203O21075C205O21110C215O21110C237O21103C267O21103C270O21161C276O21161C283O21179C287O21200C293O21200C298O21092C365O21338C370O21338C375O21463", - "inlined": "", - "fns": [] - } - }, - { - "name": "value node:internal/console/constructor:205:20", - "type": "JS", - "kind": "Unopt", - "func": 18, - "tm": 22500, - "source": { - "script": 44, - "start": 5840, - "end": 6477, - "positions": "C0O5840C15O5861C16O5861C18O5879C19O5879C21O5893C33O5943C38O6041C46O6148C60O6210C65O6308C73O6419C87O5893C93O6476", - "inlined": "", - "fns": [] - } - }, - { - "name": "value node:internal/console/constructor:235:20", - "type": "JS", - "kind": "Unopt", - "func": 19, - "tm": 22584, - "source": { - "script": 44, - "start": 6577, - "end": 7977, - "positions": "C17O6633C27O6695C34O6737C52O6807C55O6777C73O6877C86O6974C89O6944C104O7023C111O7065C126O7105C129O7105C144O7157C151O7179C166O7213C169O7209C187O7304C191O7314C198O7336C213O7370C216O7366C235O7392C239O7405C246O7427C261O7457C275O7479C279O7492C286O7514C300O7544C314O7561C318O7576C325O7598C340O7628C354O7643C358O7668C365O7710C380O7750C394O7788C398O7808C407O6633C413O7976", - "inlined": "", - "fns": [] - } - }, - { - "name": "createWriteErrorHandler node:internal/console/constructor:357:33", - "type": "JS", - "kind": "Unopt", - "func": 20, - "tm": 22625, - "source": { - "script": 44, - "start": 10694, - "end": 11551, - "positions": "C0O10694C13O10723C17O11549", - "inlined": "", - "fns": [] - } - }, - { - "name": "addReadOnlyProcessAlias node:internal/process/pre_execution:248:33", - "type": "JS", - "kind": "Unopt", - "func": 21, - "tm": 22667, - "source": { - "script": 67, - "start": 7788, - "end": 8037, - "positions": "C16O7840C21O7840C26O7866C28O7883C36O7913C43O7999C49O8017C56O7883C62O8036", - "inlined": "", - "fns": [] - } - }, - { - "name": "getOptionValue node:internal/options:44:24", - "type": "JS", - "kind": "Unopt", - "func": 22, - "tm": 22667, - "source": { - "script": 17, - "start": 985, - "end": 1228, - "positions": "C0O1018C3O1018C7O1063C15O1063C22O1113C30O1135C38O1135C43O1122C47O1113C53O1150C55O1175C60O1181C61O1203C66O1203C74O1218C81O1226", - "inlined": "", - "fns": [] - } - }, - { - "name": "getCLIOptionsFromBinding node:internal/options:18:34", - "type": "JS", - "kind": "Unopt", - "func": 23, - "tm": 22750, - "source": { - "script": 17, - "start": 497, - "end": 598, - "positions": "C0O504C6O527C11O554C15O539C28O578C32O596", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupTraceCategoryState node:internal/process/pre_execution:460:33", - "type": "JS", - "kind": "Unopt", - "func": 24, - "tm": 22917, - "source": { - "script": 67, - "start": 13707, - "end": 13934, - "positions": "C0O13749C6O13749C11O13722C16O13821C22O13821C27O13792C32O13863C35O13888C40O13863C45O13933", - "inlined": "", - "fns": [] - } - }, - { - "name": "toggleTraceCategoryState node:internal/process/per_thread:410:34", - "type": "JS", - "kind": "Unopt", - "func": 25, - "tm": 22959, - "source": { - "script": 27, - "start": 12013, - "end": 12310, - "positions": "C0O12037C4O12066C10O12101C16O12132C21O12176C26O12177C33O12122C39O12201C44O12222C49O12222C55O12241C61O12273C66O12294C71O12294C76O12309", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupInspectorHooks node:internal/process/pre_execution:466:29", - "type": "JS", - "kind": "Unopt", - "func": 26, - "tm": 23417, - "source": { - "script": 67, - "start": 13964, - "end": 14518, - "positions": "C0O14307C6O14311C11O14336C17O14402C23O14402C28O14371C33O14385C38O14448C44O14448C49O14476C54O14477C61O14517", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupWarningHandler node:internal/process/pre_execution:261:29", - "type": "JS", - "kind": "Unopt", - "func": 27, - "tm": 23459, - "source": { - "script": 67, - "start": 8067, - "end": 8559, - "positions": "C0O8067C11O8130C19O8130C24O8086C30O8101C36O8169C46O8173C57O8217C62O8221C69O8238C74O8253C79O8261C90O8261C96O8388C103O8392C108O8422C120O8422C125O8558", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupUndici node:internal/process/pre_execution:283:21", - "type": "JS", - "kind": "Unopt", - "func": 28, - "tm": 23500, - "source": { - "script": 67, - "start": 8654, - "end": 10014, - "positions": "C0O8654C19O8661C26O8665C30O8685C36O8710C37O8717C38O8729C39O8729C41O9133C51O9138C62O9347C73O9363C82O9347C87O9397C98O9420C109O9450C120O9492C131O9533C142O9575C150O9397C155O9690C163O9690C168O9721C178O9722C183O9865C193O9869C199O9919C210O9942C221O9973C229O9919C235O10013", - "inlined": "", - "fns": [] - } - }, - { - "name": "getEmbedderOptions node:internal/options:32:28", - "type": "JS", - "kind": "Unopt", - "func": 29, - "tm": 23542, - "source": { - "script": 17, - "start": 760, - "end": 877, - "positions": "C0O767C6O795C11O813C17O811C23O852C27O875", - "inlined": "", - "fns": [] - } - }, - { - "name": "lazyInterface node:internal/process/pre_execution:298:25", - "type": "JS", - "kind": "Unopt", - "func": 30, - "tm": 23542, - "source": { - "script": 67, - "start": 8910, - "end": 9129, - "positions": "C0O8910C9O8923C14O8989C22O9047C32O9125", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupWebCrypto node:internal/process/pre_execution:341:24", - "type": "JS", - "kind": "Unopt", - "func": 31, - "tm": 23625, - "source": { - "script": 67, - "start": 10141, - "end": 11070, - "positions": "C0O10148C5O10152C9O10172C17O10199C23O10199C29O10259C30O10266C31O10274C37O10278C42O10303C48O10322C55O10360C73O10322C78O10633C85O10661C96O10633C103O10771C110O10792C123O10861C154O10861C167O10771C173O11069", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupCustomEvent node:internal/process/pre_execution:389:26", - "type": "JS", - "kind": "Unopt", - "func": 32, - "tm": 23667, - "source": { - "script": 67, - "start": 11724, - "end": 11976, - "positions": "C0O11731C5O11735C9O11755C17O11782C23O11782C29O11844C30O11851C31O11882C37O11882C42O11866C47O11918C54O11934C63O11918C69O11975", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupCodeCoverage node:internal/process/pre_execution:374:27", - "type": "JS", - "kind": "Unopt", - "func": 33, - "tm": 23709, - "source": { - "script": 67, - "start": 11098, - "end": 11593, - "positions": "C0O11404C3O11416C8O11420C16O11447C22O11447C28O11501C31O11509C38O11538C44O11565C49O11569C54O11538C58O11530C63O11592", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupDebugEnv node:internal/process/pre_execution:420:23", - "type": "JS", - "kind": "Unopt", - "func": 34, - "tm": 23750, - "source": { - "script": 67, - "start": 12478, - "end": 12687, - "positions": "C0O12485C6O12485C11O12518C19O12546C24O12550C29O12519C34O12565C42O12569C48O12613C54O12613C59O12648C64O12662C69O12663C74O12686", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeDebugEnv node:internal/util/debuglog:21:28", - "type": "JS", - "kind": "Unopt", - "func": 35, - "tm": 23792, - "source": { - "script": 22, - "start": 530, - "end": 976, - "positions": "C0O545C7O556C13O581C24O694C38O694C45O738C56O739C63O767C74O768C82O818C94O833C110O818C115O818C117O856C126O868C138O944C145O956C152O975", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeReport node:internal/process/pre_execution:408:26", - "type": "JS", - "kind": "Unopt", - "func": 36, - "tm": 23917, - "source": { - "script": 67, - "start": 12230, - "end": 12454, - "positions": "C0O12237C11O12258C16O12350C24O12237C30O12453", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializePermission node:internal/process/pre_execution:573:30", - "type": "JS", - "kind": "Unopt", - "func": 37, - "tm": 24000, - "source": { - "script": 67, - "start": 17535, - "end": 19389, - "positions": "C0O17573C8O17573C13O17620C15O17654C22O17670C26O17765C29O17773C41O17773C47O17900C53O17900C58O17886C63O17891C68O17962C73O18049C90O18041C120O18041C123O18068C129O18072C135O18104C139O18112C151O18147C166O18190C175O18112C181O18030C253O18306C258O18389C275O18381C305O18381C308O18427C314O18427C319O18465C327O18472C333O18486C338O18490C348O18490C355O18515C359O18523C371O18553C386O18583C393O18656C400O18699C409O18523C415O18370C487O18827C498O18848C504O18960C512O18970C518O18983C528O18827C535O19054C540O19173C545O19195C550O19173C556O19388", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/process/pre_execution:626:53", - "type": "JS", - "kind": "Unopt", - "func": 38, - "tm": 24042, - "source": { - "script": 67, - "start": 19221, - "end": 19381, - "positions": "C0O19253C5O19253C10O19291C16O19309C26O19315C31O19309C33O19380", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeSourceMapsHandlers node:internal/process/pre_execution:707:38", - "type": "JS", - "kind": "Unopt", - "func": 39, - "tm": 24042, - "source": { - "script": 67, - "start": 21949, - "end": 22110, - "positions": "C0O21996C6O21996C11O21968C16O22047C18O22068C24O22068C29O22047C34O22109", - "inlined": "", - "fns": [] - } - }, - { - "name": "setSourceMapsEnabled node:internal/source_map/source_map_cache:52:30", - "type": "JS", - "kind": "Unopt", - "func": 40, - "tm": 24084, - "source": { - "script": 38, - "start": 1690, - "end": 2203, - "positions": "C0O1700C8O1700C13O1732C18O1732C22O1760C26O1816C32O1816C37O1789C42O1872C47O1872C53O1930C59O2089C65O2089C70O2062C75O2121C80O2121C84O2177C86O2195C93O2202", - "inlined": "", - "fns": [] - } - }, - { - "name": "validateBoolean node:internal/validators:216:25", - "type": "JS", - "kind": "Unopt", - "func": 41, - "tm": 24500, - "source": { - "script": 15, - "start": 5595, - "end": 5706, - "positions": "C0O5613C6O5649C22O5655C27O5649C29O5705", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeDeprecations node:internal/process/pre_execution:484:32", - "type": "JS", - "kind": "Unopt", - "func": 42, - "tm": 25084, - "source": { - "script": 67, - "start": 14744, - "end": 16665, - "positions": "C0O14773C6O14773C11O14759C16O14828C24O14828C29O15019C35O15019C40O15060C46O15060C51O15113C73O15105C101O15105C104O15431C112O15451C116O15493C127O15567C138O15657C149O15612C158O15478C167O15716C170O15449C174O15094C239O15993C245O15993C250O15972C255O16022C257O16050C268O16071C275O16212C279O16050C284O16245C288O16275C294O16311C304O16388C311O16293C316O16291C320O16474C326O16516C337O16498C342O16496C347O16664", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeDns node:internal/dns/utils:202:23", - "type": "JS", - "kind": "Unopt", - "func": 43, - "tm": 25167, - "source": { - "script": 71, - "start": 5449, - "end": 5813, - "positions": "C0O5477C8O5477C13O5517C15O5542C28O5551C36O5652C38O5661C44O5684C49O5689C54O5717C55O5724C56O5732C66O5732C71O5812", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupSymbolDisposePolyfill node:internal/process/pre_execution:138:36", - "type": "JS", - "kind": "Unopt", - "func": 44, - "tm": 25542, - "source": { - "script": 67, - "start": 3709, - "end": 4409, - "positions": "C0O3879C5O3897C13O3925C20O3946C33O4055C39O3925C44O4167C49O4185C57O4218C64O4239C77O4353C83O4218C89O4408", - "inlined": "", - "fns": [] - } - }, - { - "name": "assert node:internal/assert:11:16", - "type": "JS", - "kind": "Unopt", - "func": 45, - "tm": 25584, - "source": { - "script": 11, - "start": 172, - "end": 307, - "positions": "C0O193C4O242C7O242C11O259C13O265C18O259C20O306", - "inlined": "", - "fns": [] - } - }, - { - "name": "readPolicyFromDisk node:internal/process/pre_execution:635:28", - "type": "JS", - "kind": "Unopt", - "func": 46, - "tm": 25667, - "source": { - "script": 67, - "start": 19418, - "end": 21210, - "positions": "C0O19452C10O19452C15O19495C17O19525C21O19533C35O19533C41O19658C49O19658C55O19635C60O19650C65O19777C67O19794C75O19798C81O19813C87O19814C94O19868C101O19937C105O19959C111O19959C117O19937C123O19973C134O19989C138O20003C146O20017C152O20075C160O20075C165O20109C175O20109C182O20184C192O20184C197O20226C199O20279C207O20279C212O20357C220O20357C226O20325C231O20337C236O20406C242O20406C248O20456C254O20456C260O20515C262O20541C264O20565C268O20546C273O20656C275O20672C280O20606C285O20634C290O20698C296O20734C302O20734C307O20775C313O20775C319O20804C325O20824C329O20811C334O20844C341O20891C343O20920C345O20961C351O20983C361O20983C368O20961C374O20574C379O20528C383O21018C387O21045C401O21051C406O21045C407O21134C415O21162C419O21192C429O21204C431O21209", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupStacktracePrinterOnSigint node:internal/process/pre_execution:398:40", - "type": "JS", - "kind": "Unopt", - "func": 47, - "tm": 25709, - "source": { - "script": 67, - "start": 12017, - "end": 12203, - "positions": "C0O12024C8O12029C14O12069C15O12076C16O12110C22O12110C27O12091C32O12160C38O12193C43O12193C48O12202", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeReportSignalHandlers node:internal/process/pre_execution:428:40", - "type": "JS", - "kind": "Unopt", - "func": 48, - "tm": 25750, - "source": { - "script": 67, - "start": 12788, - "end": 12937, - "positions": "C0O12795C8O12799C14O12872C20O12872C25O12851C30O12912C34O12936", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeHeapSnapshotSignalHandlers node:internal/process/pre_execution:435:46", - "type": "JS", - "kind": "Unopt", - "func": 49, - "tm": 25750, - "source": { - "script": 67, - "start": 12984, - "end": 13673, - "positions": "C0O12984C20O13006C30O13006C34O13006C36O13071C46O13071C50O13071C52O13110C56O13127C57O13134C58O13138C66O13138C71O13168C79O13169C84O13229C92O13229C97O13207C103O13404C108O13412C119O13412C125O13540C132O13544C137O13572C149O13572C154O13672", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupChildProcessIpcChannel node:internal/process/pre_execution:545:37", - "type": "JS", - "kind": "Unopt", - "func": 50, - "tm": 25792, - "source": { - "script": 67, - "start": 16703, - "end": 17232, - "positions": "C0O16710C3O16722C8O16726C14O16764C20O16764C25O16808C33O16831C38O16835C46O16808C52O16861C53O16871C57O16861C61O16952C64O16967C73O17025C76O17033C81O17037C90O17084C93O17099C102O17141C108O17141C113O17165C118O17166C124O17205C127O17220C132O17205C137O17231", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeClusterIPC node:internal/process/pre_execution:564:30", - "type": "JS", - "kind": "Unopt", - "func": 51, - "tm": 25834, - "source": { - "script": 67, - "start": 17263, - "end": 17504, - "positions": "C0O17270C3O17282C10O17286C18O17301C23O17305C29O17343C35O17343C40O17375C45O17375C49O17464C52O17479C62O17503", - "inlined": "", - "fns": [] - } - }, - { - "name": "runDeserializeCallbacks node:internal/v8/startup_snapshot:39:33", - "type": "JS", - "kind": "Unopt", - "func": 52, - "tm": 25834, - "source": { - "script": 53, - "start": 863, - "end": 1004, - "positions": "C0O905C5O898C11O905C16O949C21O970C26O970C33O927C40O940C44O983C48O870C53O1003", - "inlined": "", - "fns": [] - } - }, - { - "name": "setupUserModules node:internal/process/pre_execution:163:26", - "type": "JS", - "kind": "Unopt", - "func": 53, - "tm": 26000, - "source": { - "script": 67, - "start": 4436, - "end": 4839, - "positions": "C10O4465C13O4465C16O4490C19O4490C23O4547C29O4547C34O4589C39O4607C45O4589C49O4700C53O4726C54O4733C55O4740C58O4740C61O4808C64O4808C68O4838", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeCJSLoader node:internal/process/pre_execution:685:29", - "type": "JS", - "kind": "Unopt", - "func": 54, - "tm": 26000, - "source": { - "script": 67, - "start": 21240, - "end": 21333, - "positions": "C0O21273C6O21273C11O21255C16O21315C20O21332", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeCJS node:internal/modules/cjs/loader:383:23", - "type": "JS", - "kind": "Unopt", - "func": 55, - "tm": 26084, - "source": { - "script": 63, - "start": 10714, - "end": 11192, - "positions": "C0O10816C5O10830C10O10830C15O10876C20O10900C23O10900C27O10898C31O10933C36O10933C39O10963C44O10968C48O10988C54O11016C57O11023C62O11023C66O11110C75O11131C80O11167C84O11125C89O11191", - "inlined": "", - "fns": [] - } - }, - { - "name": "getCanBeRequiredByUsersWithoutSchemeList node:internal/bootstrap/realm:313:50", - "type": "JS", - "kind": "Unopt", - "func": 56, - "tm": 27917, - "source": { - "script": 9, - "start": 9879, - "end": 9948, - "positions": "C0O9888C11O9905C14O9895C18O9944", - "inlined": "", - "fns": [] - } - }, - { - "name": "desc.value node:internal/per_context/primordials:387:32", - "type": "JS", - "kind": "Unopt", - "func": 57, - "tm": 27959, - "source": { - "script": 6, - "start": 11247, - "end": 11306, - "positions": "C0O11264C7O11271C12O11294", - "inlined": "", - "fns": [] - } - }, - { - "name": "SafeIterator node:internal/per_context/primordials:332:16", - "type": "JS", - "kind": "Unopt", - "func": 58, - "tm": 28709, - "source": { - "script": 6, - "start": 9510, - "end": 9570, - "positions": "C0O9529C3O9546C7O9544C12O9569", - "inlined": "", - "fns": [] - } - }, - { - "name": "next node:internal/per_context/primordials:335:9", - "type": "JS", - "kind": "Unopt", - "func": 59, - "tm": 28750, - "source": { - "script": 6, - "start": 9579, - "end": 9624, - "positions": "C0O9590C3O9607C8O9597C12O9618", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeCjsConditions node:internal/modules/helpers:65:33", - "type": "JS", - "kind": "Unopt", - "func": 60, - "tm": 28792, - "source": { - "script": 64, - "start": 1806, - "end": 2166, - "positions": "C0O1836C8O1836C13O1887C21O1887C26O1944C37O2055C50O2119C95O2143C142O2071C150O2069C157O2165", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._initPaths node:internal/modules/cjs/loader:1530:29", - "type": "JS", - "kind": "Unopt", - "func": 61, - "tm": 29167, - "source": { - "script": 63, - "start": 49693, - "end": 50650, - "positions": "C0O49716C9O49736C14O49740C22O49754C28O49754C33O49793C42O49813C47O49817C55O49829C61O49829C66O50024C74O50040C77O50045C85O50061C93O50045C103O50083C106O50088C114O50104C125O50088C131O50144C140O50145C143O50150C157O50150C169O50189C173O50208C180O50237C183O50242C191O50242C198O50208C203O50284C210O50313C213O50318C221O50318C228O50284C233O50361C237O50381C244O50415C249O50443C254O50474C257O50479C262O50443C270O50497C273O50415C279O50381C284O50521C286O50533C292O50594C297O50615C302O50635C305O50615C309O50613C314O50649", - "inlined": "", - "fns": [] - } - }, - { - "name": "resolve node:path:1095:10", - "type": "JS", - "kind": "Sparkplug", - "func": 9, - "tm": 29250, - "source": { - "script": 34, - "start": 33911, - "end": 34827, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "SafeMap node:internal/per_context/primordials:413:16", - "type": "JS", - "kind": "Sparkplug", - "func": 62, - "tm": 29250, - "source": { - "script": 6, - "start": 11975, - "end": 11992, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "getOptionValue node:internal/options:44:24", - "type": "JS", - "kind": "Sparkplug", - "func": 22, - "tm": 29292, - "source": { - "script": 17, - "start": 985, - "end": 1228, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "exposeLazyInterfaces node:internal/util:683:30", - "type": "JS", - "kind": "Sparkplug", - "func": 63, - "tm": 29334, - "source": { - "script": 16, - "start": 18482, - "end": 18553, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "defineLazyProperties node:internal/util:600:30", - "type": "JS", - "kind": "Sparkplug", - "func": 64, - "tm": 30209, - "source": { - "script": 16, - "start": 16645, - "end": 17549, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "getCLIOptionsFromBinding node:internal/options:18:34", - "type": "JS", - "kind": "Sparkplug", - "func": 23, - "tm": 30250, - "source": { - "script": 17, - "start": 497, - "end": 598, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "next node:internal/per_context/primordials:335:9", - "type": "JS", - "kind": "Sparkplug", - "func": 59, - "tm": 30250, - "source": { - "script": 6, - "start": 9579, - "end": 9624, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "SafeSet node:internal/per_context/primordials:426:16", - "type": "JS", - "kind": "Sparkplug", - "func": 65, - "tm": 30250, - "source": { - "script": 6, - "start": 12304, - "end": 12321, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeESMLoader node:internal/process/pre_execution:690:29", - "type": "JS", - "kind": "Unopt", - "func": 66, - "tm": 30292, - "source": { - "script": 67, - "start": 21363, - "end": 21910, - "positions": "C0O21410C6O21410C11O21392C16O21451C20O21614C28O21618C34O21734C40O21734C45O21683C50O21691C55O21709C60O21780C66O21780C71O21799C73O21809C77O21823C79O21843C83O21867C85O21886C90O21909", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeESM node:internal/modules/esm/utils:192:23", - "type": "JS", - "kind": "Unopt", - "func": 67, - "tm": 30334, - "source": { - "script": 66, - "start": 6390, - "end": 6744, - "positions": "C10O6419C12O6435C18O6455C21O6455C24O6605C32O6605C36O6674C44O6674C49O6743", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeDefaultConditions node:internal/modules/esm/utils:60:37", - "type": "JS", - "kind": "Unopt", - "func": 68, - "tm": 30667, - "source": { - "script": 66, - "start": 1463, - "end": 1809, - "positions": "C0O1493C8O1493C13O1544C21O1544C26O1601C37O1637C50O1705C95O1729C140O1657C147O1655C153O1753C160O1788C165O1776C173O1774C180O1808", - "inlined": "", - "fns": [] - } - }, - { - "name": "get hasLoadedAnyUserCJSModule node:internal/modules/cjs/loader:72:32", - "type": "JS", - "kind": "Unopt", - "func": 69, - "tm": 30709, - "source": { - "script": 63, - "start": 2217, - "end": 2257, - "positions": "C0O2222C4O2255", - "inlined": "", - "fns": [] - } - }, - { - "name": "loadPreloadModules node:internal/process/pre_execution:722:28", - "type": "JS", - "kind": "Unopt", - "func": 70, - "tm": 30709, - "source": { - "script": 67, - "start": 22398, - "end": 22719, - "positions": "C0O22485C8O22485C13O22516C15O22553C21O22560C26O22637C32O22637C37O22593C42O22603C47O22681C52O22718", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._preloadModules node:internal/modules/cjs/loader:1564:34", - "type": "JS", - "kind": "Unopt", - "func": 71, - "tm": 30750, - "source": { - "script": 63, - "start": 50792, - "end": 51381, - "positions": "C0O50807C5O50812C11O50838C12O50845C13O50851C17O50864C23O51059C33O51059C42O51109C45O51131C53O51156C58O51156C63O51131C68O51122C85O51184C88O51190C95O51195C100O51217C106O51230C114O51245C116O51245C119O51279C121O51295C125O51284C130O51314C135O51346C139O51314C144O51304C149O51266C153O51358C157O51371C164O51380", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module node:internal/modules/cjs/loader:252:16", - "type": "JS", - "kind": "Unopt", - "func": 72, - "tm": 30792, - "source": { - "script": 63, - "start": 7243, - "end": 7985, - "positions": "C14O7265C16O7273C20O7281C22O7293C25O7298C30O7298C35O7291C39O7313C52O7313C57O7352C62O7370C67O7370C73O7391C84O7391C89O7430C90O7444C94O7454C95O7466C99O7477C101O7491C105O7503C107O7533C112O7533C118O7541C126O7555C128O7593C133O7593C138O7637C143O7637C149O7733C159O7765C162O7765C171O7733C176O7849C181O7869C191O7891C194O7891C200O7849C205O7936C207O7941C212O7965C217O7984", - "inlined": "", - "fns": [] - } - }, - { - "name": "dirname node:path:1278:10", - "type": "JS", - "kind": "Unopt", - "func": 73, - "tm": 30834, - "source": { - "script": 34, - "start": 38877, - "end": 39546, - "positions": "C0O38890C8O38890C13O38933C19O38940C24O38953C26O38964C27O38985C34O38985C42O39024C44O39020C48O39058C51O39085C53O39113C57O39120C61O39127C63O39127C68O39146C73O39150C81O39189C83O39185C88O39219C92O39250C97O39269C101O39356C103O39135C108O39095C112O39397C114O39405C119O39419C129O39446C130O39451C136O39470C141O39483C143O39495C144O39500C157O39507C162O39542", - "inlined": "", - "fns": [] - } - }, - { - "name": "setOwnProperty node:internal/util:723:24", - "type": "JS", - "kind": "Unopt", - "func": 74, - "tm": 30875, - "source": { - "script": 16, - "start": 19520, - "end": 19687, - "positions": "C0O19542C5O19575C12O19653C22O19549C27O19685", - "inlined": "", - "fns": [] - } - }, - { - "name": "updateChildren node:internal/modules/cjs/loader:217:24", - "type": "JS", - "kind": "Unopt", - "func": 75, - "tm": 30917, - "source": { - "script": 63, - "start": 6182, - "end": 6361, - "positions": "C0O6225C7O6231C15O6245C19O6263C23O6271C26O6271C33O6319C38O6319C44O6360", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/util:794:18", - "type": "JS", - "kind": "Unopt", - "func": 76, - "tm": 30917, - "source": { - "script": 16, - "start": 21797, - "end": 21917, - "positions": "C0O21806C10O21841C13O21849C19O21847C25O21870C29O21882C35O21900C39O21913", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/cjs/loader:117:3", - "type": "JS", - "kind": "Unopt", - "func": 77, - "tm": 30959, - "source": { - "script": 63, - "start": 3473, - "end": 3564, - "positions": "C0O3480C8O3480C20O3522C27O3564", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._nodeModulePaths node:internal/modules/cjs/loader:793:37", - "type": "JS", - "kind": "Unopt", - "func": 78, - "tm": 31000, - "source": { - "script": 63, - "start": 24237, - "end": 25417, - "positions": "C0O24292C5O24304C10O24304C17O24483C19O24492C24O24509C28O24534C29O24783C32O24809C36O24816C40O24825C42O24840C47O24850C48O24850C53O24882C58O24882C64O24924C66O24937C68O24933C73O24967C75O24977C77O24973C82O24996C89O25047C100O25047C108O25083C112O24996C117O25133C120O25151C124O25171C126O25177C131O25195C138O25206C144O25210C149O25232C156O25264C159O24858C164O24791C168O25351C176O25351C181O25400C183O25413", - "inlined": "", - "fns": [] - } - }, - { - "name": "internalRequire node:internal/modules/cjs/loader:167:25", - "type": "JS", - "kind": "Unopt", - "func": 79, - "tm": 31042, - "source": { - "script": 63, - "start": 4815, - "end": 5116, - "positions": "C0O4832C8O4832C13O4860C15O4867C20O4881C36O4887C41O4881C42O4996C51O5008C60O5024C63O5038C76O5038C93O5095C102O5107C126O5115", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._load node:internal/modules/cjs/loader:950:24", - "type": "JS", - "kind": "Unopt", - "func": 80, - "tm": 31125 - }, - { - "name": "logger node:internal/util/debuglog:100:18", - "type": "JS", - "kind": "Unopt", - "func": 81, - "tm": 31167, - "source": { - "script": 22, - "start": 2965, - "end": 3160, - "positions": "C0O2965C3O2997C24O3021C30O3038C34O3028C38O3043C39O3058C45O3075C51O3084C55O3065C60O3089C61O3105C65O3112C72O3125C77O3121C83O3112C88O3150", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/per_context/primordials:338:21", - "type": "JS", - "kind": "Unopt", - "func": 82, - "tm": 31209, - "source": { - "script": 6, - "start": 9645, - "end": 9674, - "positions": "C0O9656C2O9668", - "inlined": "", - "fns": [] - } - }, - { - "name": "debug node:internal/util/debuglog:81:15", - "type": "JS", - "kind": "Unopt", - "func": 83, - "tm": 31209, - "source": { - "script": 22, - "start": 2453, - "end": 2847, - "positions": "C0O2453C3O2472C6O2472C9O2580C16O2601C22O2588C30O2586C36O2620C42O2656C47O2659C50O2656C54O2684C75O2708C81O2725C85O2715C89O2730C90O2745C96O2762C102O2771C106O2752C111O2776C112O2792C116O2799C123O2812C128O2808C134O2799C139O2837", - "inlined": "", - "fns": [] - } - }, - { - "name": "init node:internal/util/debuglog:77:16", - "type": "JS", - "kind": "Unopt", - "func": 84, - "tm": 31250, - "source": { - "script": 22, - "start": 2355, - "end": 2438, - "positions": "C0O2364C10O2370C14O2368C16O2407C26O2417C33O2415C40O2437", - "inlined": "", - "fns": [] - } - }, - { - "name": "testEnabled node:internal/util/debuglog:31:19", - "type": "JS", - "kind": "Unopt", - "func": 85, - "tm": 31250, - "source": { - "script": 22, - "start": 958, - "end": 969, - "positions": "C0O964C1O969", - "inlined": "", - "fns": [] - } - }, - { - "name": "debuglogImpl node:internal/util/debuglog:54:22", - "type": "JS", - "kind": "Unopt", - "func": 86, - "tm": 31292, - "source": { - "script": 22, - "start": 1554, - "end": 2091, - "positions": "C0O1554C9O1573C18O1587C23O1614C34O1647C39O1655C43O1647C45O1666C55O1666C59O1698C71O1709C75O1714C83O2030C97O2048C99O2046C103O2066C112O2083C115O2089", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/cjs/loader:357:66", - "type": "JS", - "kind": "Unopt", - "func": 87, - "tm": 31292, - "source": { - "script": 63, - "start": 9947, - "end": 9972, - "positions": "C0O9959C2O9965C9O9971", - "inlined": "", - "fns": [] - } - }, - { - "name": "noop node:internal/util/debuglog:46:14", - "type": "JS", - "kind": "Unopt", - "func": 88, - "tm": 31334, - "source": { - "script": 22, - "start": 1404, - "end": 1412, - "positions": "C1O1411", - "inlined": "", - "fns": [] - } - }, - { - "name": "reportModuleToWatchMode node:internal/modules/cjs/loader:228:33", - "type": "JS", - "kind": "Unopt", - "func": 89, - "tm": 31334, - "source": { - "script": 63, - "start": 6510, - "end": 6634, - "positions": "C0O6525C5O6529C13O6570C19O6582C22O6590C32O6614C41O6615C51O6590C57O6633", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/cjs/loader:119:45", - "type": "JS", - "kind": "Unopt", - "func": 90, - "tm": 31375, - "source": { - "script": 63, - "start": 3613, - "end": 3656, - "positions": "C0O3631C3O3627C8O3631C12O3656", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._resolveFilename node:internal/modules/cjs/loader:1058:35", - "type": "JS", - "kind": "Unopt", - "func": 91, - "tm": 31459 - }, - { - "name": "normalizeRequirableId node:internal/bootstrap/realm:292:31", - "type": "JS", - "kind": "Unopt", - "func": 92, - "tm": 31500, - "source": { - "script": 9, - "start": 9252, - "end": 9576, - "positions": "C0O9263C10O9267C17O9336C27O9336C33O9371C38O9389C43O9389C50O9435C52O9455C55O9475C60O9493C65O9493C72O9533C74O9543C75O9555C76O9572", - "inlined": "", - "fns": [] - } - }, - { - "name": "canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36", - "type": "JS", - "kind": "Unopt", - "func": 93, - "tm": 31500, - "source": { - "script": 9, - "start": 9152, - "end": 9220, - "positions": "C0O9163C7O9208C12O9208C17O9216", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._resolveLookupPaths node:internal/modules/cjs/loader:839:38", - "type": "JS", - "kind": "Unopt", - "func": 94, - "tm": 31542, - "source": { - "script": 63, - "start": 25560, - "end": 26839, - "positions": "C0O25582C5O25600C10O25600C17O25638C25O25638C30O25682C31O25694C32O25737C39O25741C47O25775C52O25801C59O25808C66O25821C72O25821C80O25855C87O25872C93O25872C101O25906C108O25925C114O25938C120O25938C128O25972C133O26023C135O26034C142O26044C149O26051C158O26069C165O26097C168O26077C173O26117C178O26158C183O26117C190O26185C195O26217C209O26217C214O26281C220O26288C230O26307C231O26354C235O26377C241O26391C247O26562C252O26574C266O26574C271O26629C273O26646C274O26654C282O26721C290O26654C295O26747C304O26748C307O26753C312O26768C317O26753C329O26782C337O26782C342O26820C344O26837", - "inlined": "", - "fns": [] - } - }, - { - "name": "trySelfParentPath node:internal/modules/cjs/loader:520:27", - "type": "JS", - "kind": "Unopt", - "func": 95, - "tm": 31584, - "source": { - "script": 63, - "start": 15194, - "end": 15461, - "positions": "C0O15207C4O15222C5O15235C6O15252C12O15282C16O15291C17O15312C24O15315C29O15338C36O15341C44O15383C47O15398C52O15398C59O15406C62O15411C66O15404C69O15415C72O15436C73O15449C75O15460", - "inlined": "", - "fns": [] - } - }, - { - "name": "trySelf node:internal/modules/cjs/loader:539:17", - "type": "JS", - "kind": "Unopt", - "func": 96, - "tm": 31667, - "source": { - "script": 63, - "start": 15685, - "end": 16597, - "positions": "C0O15711C4O15730C5O15743C6O15786C11O15804C16O15804C22O15763C27O15774C32O15836C36O15852C43O15875C49O15901C50O15914C51O15926C53O15959C57O15951C62O15971C67O15997C72O16043C84O16001C91O16059C96O16077C99O16111C104O16116C109O16077C114O16075C120O16140C121O16153C125O16205C131O16205C136O16179C141O16250C146O16308C151O16330C155O16308C162O16372C165O16372C172O16399C175O16399C185O16279C197O16257C202O16441C214O16462C217O16468C224O16473C229O16509C236O16553C240O16515C245O16509C246O16583C248O16583", - "inlined": "", - "fns": [] - } - }, - { - "name": "readPackageScope node:internal/modules/package_json_reader:149:26", - "type": "JS", - "kind": "Unopt", - "func": 97, - "tm": 31709, - "source": { - "script": 65, - "start": 4262, - "end": 5057, - "positions": "C0O4305C7O4339C10O4305C16O4351C18O4395C23O4406C28O4406C33O4430C40O4485C43O4447C49O4495C62O4507C69O4651C75O4677C78O4688C88O4715C90O4713C94O4688C102O4729C103O4742C104O4753C111O4792C116O4796C120O4757C127O4823C128O4836C129O4861C134O4885C136O4883C140O4861C145O4905C151O4921C158O4944C164O4965C170O4984C171O5017C173O5017C178O4421C182O5042C183O5055", - "inlined": "", - "fns": [] - } - }, - { - "name": "isEnabled node:internal/process/permission:16:12", - "type": "JS", - "kind": "Unopt", - "func": 98, - "tm": 31917, - "source": { - "script": 46, - "start": 324, - "end": 559, - "positions": "C0O333C6O410C12O410C17O391C22O445C25O470C32O468C38O525C42O555", - "inlined": "", - "fns": [] - } - }, - { - "name": "readPackage node:internal/modules/package_json_reader:140:21", - "type": "JS", - "kind": "Unopt", - "func": 99, - "tm": 32000, - "source": { - "script": 65, - "start": 3950, - "end": 4020, - "positions": "C0O3968C5O3980C11O3980C17O3975C21O4018", - "inlined": "", - "fns": [] - } - }, - { - "name": "read node:internal/modules/package_json_reader:48:14", - "type": "JS", - "kind": "Unopt", - "func": 100, - "tm": 32042, - "source": { - "script": 65, - "start": 1125, - "end": 3862, - "positions": "C9O1165C16O1138C21O1144C26O1155C31O1183C36O1193C41O1193C48O1214C53O1227C58O1227C63O1241C64O1299C71O1327C74O1327C79O1299C86O1264C93O1279C97O1377C104O1434C109O1454C114O1475C119O1568C124O1592C131O1916C139O1926C148O1956C150O1974C152O2003C157O2027C162O2036C170O2034C180O2083C184O2104C196O2173C203O2184C222O2211C228O2225C234O2211C238O2209C246O2261C254O2110C259O2104C260O2524C268O2557C274O2568C281O2583C285O2575C288O2538C292O2600C297O2611C301O2631C303O2631C304O2663C305O2677C309O2765C317O2769C324O2832C332O2880C336O2871C340O2897C348O2901C355O2964C363O3012C367O3003C371O3029C379O3033C386O3115C390O3106C394O3135C402O3139C409O3221C413O3212C417O3296C425O3300C432O3357C439O3362C444O3387C451O3392C456O3436C460O3427C464O3453C470O3516C476O3516C481O3497C486O3551C489O3562C501O3612C506O3646C516O3560C522O3682C528O3729C533O3729C538O3760C543O3769C548O3769C554O3815C559O3821C564O3821C570O3846C572O3860", - "inlined": "", - "fns": [] - } - }, - { - "name": "toNamespacedPath node:path:1269:19", - "type": "JS", - "kind": "Unopt", - "func": 101, - "tm": 32084, - "source": { - "script": 34, - "start": 38744, - "end": 38804, - "positions": "C0O38788C2O38800", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._findPath node:internal/modules/cjs/loader:610:28", - "type": "JS", - "kind": "Unopt", - "func": 102, - "tm": 32375 - }, - { - "name": "isAbsolute node:path:1159:13", - "type": "JS", - "kind": "Unopt", - "func": 103, - "tm": 32459, - "source": { - "script": 34, - "start": 35583, - "end": 35729, - "positions": "C0O35596C8O35596C13O35642C19O35649C26O35667C31O35667C39O35706C41O35702C44O35725", - "inlined": "", - "fns": [] - } - }, - { - "name": "stat node:internal/modules/cjs/loader:185:14", - "type": "JS", - "kind": "Unopt", - "func": 104, - "tm": 32500, - "source": { - "script": 63, - "start": 5267, - "end": 5668, - "positions": "C0O5282C5O5298C10O5298C17O5328C23O5373C28O5383C33O5383C39O5402C41O5430C43O5444C44O5468C49O5468C54O5500C61O5533C66O5613C71O5623C76O5623C82O5652C84O5666", - "inlined": "", - "fns": [] - } - }, - { - "name": "tryExtensions node:internal/modules/cjs/loader:487:23", - "type": "JS", - "kind": "Unopt", - "func": 105, - "tm": 32542, - "source": { - "script": 63, - "start": 14187, - "end": 14385, - "positions": "C0O14229C2O14241C6O14234C11O14277C16O14300C19O14294C23O14277C29O14319C31O14341C33O14357C34O14250C39O14216C43O14370C44O14383", - "inlined": "", - "fns": [] - } - }, - { - "name": "tryFile node:internal/modules/cjs/loader:472:17", - "type": "JS", - "kind": "Unopt", - "func": 106, - "tm": 32542, - "source": { - "script": 63, - "start": 13680, - "end": 13900, - "positions": "C0O13717C5O13717C10O13739C11O13746C16O13755C17O13762C18O13767C26O13771C34O13813C36O13827C41O13839C46O13839C51O13860C52O13867C57O13874C61O13898", - "inlined": "", - "fns": [] - } - }, - { - "name": "toRealPath node:internal/modules/helpers:54:20", - "type": "JS", - "kind": "Unopt", - "func": 107, - "tm": 32584, - "source": { - "script": 64, - "start": 1545, - "end": 1658, - "positions": "C0O1563C5O1573C10O1586C17O1606C20O1617C28O1636C35O1573C41O1656", - "inlined": "", - "fns": [] - } - }, - { - "name": "realpathSync node:fs:2611:22", - "type": "JS", - "kind": "Unopt", - "func": 108, - "tm": 32792 - }, - { - "name": "getOptions node:internal/fs/utils:323:20", - "type": "JS", - "kind": "Unopt", - "func": 109, - "tm": 35792, - "source": { - "script": 60, - "start": 7457, - "end": 8064, - "positions": "C9O7484C16O7502C27O7562C29O7584C30O7592C36O7631C41O7675C43O7699C47O7714C54O7749C60O7788C78O7794C83O7788C84O7881C91O7890C96O7908C99O7931C104O7908C108O7957C114O7985C119O8013C127O7985C132O8047C134O8062", - "inlined": "", - "fns": [] - } - }, - { - "name": "assertEncoding node:internal/fs/utils:158:24", - "type": "JS", - "kind": "Unopt", - "func": 110, - "tm": 36750, - "source": { - "script": 60, - "start": 3655, - "end": 3832, - "positions": "C0O3670C6O3687C9O3694C14O3694C21O3737C24O3764C40O3770C45O3764C47O3831", - "inlined": "", - "fns": [] - } - }, - { - "name": "toPathIfFileURL node:internal/url:1479:25", - "type": "JS", - "kind": "Unopt", - "func": 111, - "tm": 36834, - "source": { - "script": 39, - "start": 42746, - "end": 42859, - "positions": "C0O42766C3O42771C9O42797C11O42818C12O42821C15O42828C19O42857", - "inlined": "", - "fns": [] - } - }, - { - "name": "isURL node:internal/url:755:15", - "type": "JS", - "kind": "Unopt", - "func": 112, - "tm": 38375, - "source": { - "script": 39, - "start": 21285, - "end": 21396, - "positions": "C0O21296C12O21315C21O21330C27O21347C34O21374C40O21303C44O21394", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/fs/utils:697:38", - "type": "JS", - "kind": "Unopt", - "func": 113, - "tm": 38417, - "source": { - "script": 60, - "start": 18901, - "end": 19171, - "positions": "C14O18934C22O18967C25O18967C31O18993C36O19024C49O18999C54O18993C55O19089C68O19089C74O19126C76O19155C78O19155C80O19170", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/fs/utils:366:35", - "type": "JS", - "kind": "Unopt", - "func": 114, - "tm": 38417, - "source": { - "script": 60, - "start": 8792, - "end": 9388, - "positions": "C16O8856C21O8909C26O8909C31O9003C37O9026C41O9054C45O9071C51O9071C60O9122C64O9143C69O9143C76O9188C77O9195C78O9215C94O9215C100O9336C104O9358C106O9358C107O9375C109O9386", - "inlined": "", - "fns": [] - } - }, - { - "name": "isUint8Array node:internal/util/types:13:22", - "type": "JS", - "kind": "Unopt", - "func": 115, - "tm": 38459, - "source": { - "script": 18, - "start": 257, - "end": 342, - "positions": "C0O269C5O276C12O323C15O340", - "inlined": "", - "fns": [] - } - }, - { - "name": "splitRoot node:fs:2567:33", - "type": "JS", - "kind": "Unopt", - "func": 116, - "tm": 38584, - "source": { - "script": 55, - "start": 67653, - "end": 67845, - "positions": "C0O67678C2O67689C6O67683C11O67710C16O67714C24O67752C26O67748C31O67780C44O67787C49O67819C50O67699C55O67665C59O67830C61O67841", - "inlined": "", - "fns": [] - } - }, - { - "name": "nextPart node:fs:2600:31", - "type": "JS", - "kind": "Unopt", - "func": 117, - "tm": 38625, - "source": { - "script": 55, - "start": 68560, - "end": 68618, - "positions": "C0O68573C14O68580C19O68614", - "inlined": "", - "fns": [] - } - }, - { - "name": "handleErrorFromBinding node:internal/fs/utils:349:32", - "type": "JS", - "kind": "Unopt", - "func": 118, - "tm": 38667, - "source": { - "script": 60, - "start": 8153, - "end": 8651, - "positions": "C0O8171C6O8234C11O8234C16O8256C24O8256C29O8313C31O8313C32O8338C38O8566C43O8593C51O8566C56O8639C60O8629C62O8650", - "inlined": "", - "fns": [] - } - }, - { - "name": "isFileType node:fs:206:20", - "type": "JS", - "kind": "Unopt", - "func": 119, - "tm": 38667, - "source": { - "script": 55, - "start": 5086, - "end": 5327, - "positions": "C0O5220C2O5225C6O5232C10O5266C15O5273C20O5289C22O5304C24O5302C30O5312C33O5325", - "inlined": "", - "fns": [] - } - }, - { - "name": "encodeRealpathResult node:fs:2576:30", - "type": "JS", - "kind": "Unopt", - "func": 120, - "tm": 38750, - "source": { - "script": 55, - "start": 67879, - "end": 68137, - "positions": "C0O67901C4O67926C10O67946C17O67955C22O67971C24O67985C25O68005C30O68012C35O68012C41O68040C48O68049C53O68069C55O68085C56O68108C61O68125C66O68108C71O68135", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module.load node:internal/modules/cjs/loader:1194:33", - "type": "JS", - "kind": "Unopt", - "func": 121, - "tm": 38834, - "source": { - "script": 63, - "start": 38021, - "end": 38862, - "positions": "C0O38036C8O38082C16O38036C21O38090C26O38103C32O38090C36O38114C38O38128C42O38142C45O38162C52O38179C55O38184C60O38184C66O38162C71O38153C75O38225C78O38225C83O38302C91O38306C101O38359C106O38370C112O38386C124O38392C129O38386C130O38436C133O38443C140O38454C144O38465C150O38485C151O38497C155O38531C160O38531C164O38643C169O38678C174O38689C186O38729C191O38736C196O38736C203O38750C205O38748C210O38787C215O38796C220O38796C227O38828C232O38837C237O38837C244O38861", - "inlined": "", - "fns": [] - } - }, - { - "name": "findLongestRegisteredExtension node:internal/modules/cjs/loader:502:40", - "type": "JS", - "kind": "Unopt", - "func": 122, - "tm": 38875, - "source": { - "script": 63, - "start": 14608, - "end": 15045, - "positions": "C0O14636C5O14641C10O14641C16O14667C18O14691C20O14717C22O14785C36O14738C44O14785C49O14799C51O14818C55O14827C56O14837C61O14846C63O14895C68O14914C74O14953C77O14964C84O14975C89O14997C91O15021C92O14722C96O15030C98O15043", - "inlined": "", - "fns": [] - } - }, - { - "name": "basename node:path:1309:11", - "type": "JS", - "kind": "Unopt", - "func": 123, - "tm": 38917, - "source": { - "script": 34, - "start": 39650, - "end": 42069, - "positions": "C0O39671C4O39703C12O39703C17O39738C25O39738C30O39785C32O39802C35O39829C37O39840C41O39875C47O39882C52O39896C57O39911C61O39903C66O39927C68O39938C73O39956C75O39966C76O39993C80O40000C84O40034C87O40062C91O40069C95O40076C96O40076C101O40110C106O40110C112O40154C114O40167C116O40163C121O40337C125O40370C127O40380C131O40397C135O40443C137O40464C142O40630C144O40664C146O40685C150O40712C151O40723C156O40794C158O40807C161O40807C166O40803C171O40866C178O40879C183O41015C190O41178C193O41205C198O40084C203O40044C207O41280C209O41290C214O41307C221O41342C223O41350C228O41377C233O41391C247O41398C252O41437C253O41466C257O41473C261O41480C262O41480C267O41499C272O41503C280O41542C282O41538C287O41706C291O41737C293O41747C297O41762C301O41792C303O41800C308O41920C310O41950C312O41958C316O41488C321O41448C325O41982C327O41990C332O42004C334O42014C335O42019C349O42026C354O42065", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._extensions..js node:internal/modules/cjs/loader:1389:37", - "type": "JS", - "kind": "Unopt", - "func": 124, - "tm": 39000, - "source": { - "script": 63, - "start": 44948, - "end": 46869, - "positions": "C0O45047C5O45061C10O45061C16O45080C18O45091C25O45101C34O45134C39O45146C40O45160C46O45188C51O45201C60O45201C67O45239C76O45243C83O45303C88O45321C93O45321C105O45441C112O45445C122O45452C127O45600C132O45618C137O45618C143O45656C146O45662C154O45704C159O45709C164O45721C174O45709C181O45766C186O45766C192O45825C211O45825C217O45996C220O46007C227O46013C232O46041C237O46079C243O46097C252O46097C262O46092C265O46210C269O46256C276O46290C279O46315C287O46322C291O46364C301O46322C308O46290C322O46256C329O46392C333O46449C344O46449C357O46418C364O46427C368O46512C374O46524C376O46559C385O46559C393O46605C396O46599C400O46637C412O46654C425O46663C438O46690C447O46721C452O46690C468O46744C473O46744C478O46809C480O46809C481O46839C486O46839C493O46868", - "inlined": "", - "fns": [] - } - }, - { - "name": "readFileSync node:fs:446:22", - "type": "JS", - "kind": "Unopt", - "func": 125, - "tm": 39125, - "source": { - "script": 55, - "start": 11263, - "end": 12881, - "positions": "C0O11283C5O11304C10O11293C17O11344C24O11353C29O11375C36O11384C41O11403C46O11408C52O11431C57O11449C64O11466C67O11466C72O11449C79O11501C84O11516C91O11535C94O11557C99O11535C104O11516C110O11564C111O11589C116O11589C121O11643C129O11661C132O11664C137O11687C150O11664C156O11718C159O11718C165O11760C170O11778C173O11760C182O11794C189O11815C191O11824C193O11870C195O11915C196O11924C201O11937C206O11966C218O11975C224O12023C226O12037C227O12046C232O12070C237O12126C253O12082C259O12140C261O12147C268O12187C269O12181C276O12194C281O12059C287O12318C292O12334C302O12334C308O12359C327O12371C333O12421C334O12435C339O12452C344O12487C351O12487C358O12452C363O12523C365O12530C372O12564C373O12564C378O12218C382O12579C386O12598C391O12601C396O12601C401O12619C402O12628C407O12690C412O12706C417O12706C426O12737C428O12745C433O12775C440O12775C447O12809C453O12835C458O12852C463O12835C469O12865C471O12879", - "inlined": "", - "fns": [] - } - }, - { - "name": "isEncoding node:buffer:569:40", - "type": "JS", - "kind": "Unopt", - "func": 126, - "tm": 39250, - "source": { - "script": 24, - "start": 15940, - "end": 16072, - "positions": "C0O15955C6O16003C12O16010C20O16028C23O16028C28O16056C29O16070", - "inlined": "", - "fns": [] - } - }, - { - "name": "normalizeEncoding node:internal/util:212:27", - "type": "JS", - "kind": "Unopt", - "func": 127, - "tm": 40709, - "source": { - "script": 16, - "start": 5641, - "end": 5746, - "positions": "C0O5651C7O5674C14O5692C19O5705C21O5719C22O5722C25O5729C29O5744", - "inlined": "", - "fns": [] - } - }, - { - "name": "isInt32 node:internal/validators:43:17", - "type": "JS", - "kind": "Unopt", - "func": 128, - "tm": 40750, - "source": { - "script": 15, - "start": 851, - "end": 894, - "positions": "C0O863C2O887C5O876C8O892", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/fs/utils:727:42", - "type": "JS", - "kind": "Unopt", - "func": 129, - "tm": 40750, - "source": { - "script": 60, - "start": 19896, - "end": 20054, - "positions": "C14O19951C19O19951C24O19985C29O19985C34O20017C37O20024C41O20052", - "inlined": "", - "fns": [] - } - }, - { - "name": "possiblyTransformPath node:internal/fs/utils:715:31", - "type": "JS", - "kind": "Unopt", - "func": 130, - "tm": 40792, - "source": { - "script": 60, - "start": 19572, - "end": 19853, - "positions": "C0O19583C5O19598C10O19598C16O19617C22O19655C27O19662C31O19680C32O19691C39O19698C42O19698C47O19691C51O19723C56O19728C62O19750C67O19757C73O19779C80O19797C85O19809C88O19809C93O19797C98O19786C102O19832C103O19839C105O19851", - "inlined": "", - "fns": [] - } - }, - { - "name": "stringToFlags node:internal/fs/utils:584:23", - "type": "JS", - "kind": "Unopt", - "func": 131, - "tm": 40834, - "source": { - "script": 60, - "start": 15805, - "end": 17039, - "positions": "C14O15833C20O15870C25O15870C30O15902C32O15915C33O15923C38O15948C42O15964C43O15972C202O16004C206O16020C207O16070C214O16088C216O16086C219O16095C220O16112C224O16126C225O16178C232O16194C234O16192C237O16201C238O16218C245O16235C247O16233C253O16245C255O16243C258O16254C259O16304C266O16321C268O16319C274O16331C276O16329C282O16342C284O16340C287O16349C288O16367C295O16384C297O16382C303O16394C305O16392C308O16401C309O16451C316O16468C318O16466C324O16478C326O16476C332O16487C334O16485C337O16494C338O16511C345O16529C347O16527C353O16539C355O16537C358O16548C359O16598C366O16616C368O16614C374O16626C376O16624C382O16637C384O16635C387O16644C388O16694C395O16712C397O16710C403O16722C405O16720C411O16733C413O16731C416O16740C417O16758C424O16776C426O16774C432O16786C434O16784C437O16793C438O16843C445O16861C447O16859C453O16871C455O16869C461O16880C463O16878C466O16887C467O16937C474O16955C476O16953C482O16965C484O16963C490O16974C492O16972C495O16981C496O16989C509O16995C514O16989", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._compile node:internal/modules/cjs/loader:1330:37", - "type": "JS", - "kind": "Unopt", - "func": 132, - "tm": 41084, - "source": { - "script": 63, - "start": 42944, - "end": 44762, - "positions": "C0O42972C2O42989C4O43019C9O43019C15O43027C23O43041C25O43061C30O43073C35O43123C40O43123C46O43168C51O43168C57O43236C69O43236C75O43297C77O43305C85O43309C94O43352C101O43373C107O43467C110O43479C117O43483C125O43514C128O43536C136O43561C143O43565C152O43536C160O43527C170O43758C177O43765C182O43778C188O43778C193O43765C198O43758C204O43842C209O43855C215O43922C223O43943C229O43974C231O43970C236O43996C240O44011C246O44025C252O44044C257O44072C262O44122C267O44127C272O44127C278O44164C283O44164C289O44208C291O44239C296O44268C297O44294C300O44302C306O44319C311O44328C316O44340C324O44338C330O44359C334O44387C355O44396C363O44532C368O44571C377O44609C386O44618C395O44627C404O44635C413O44645C423O44541C429O44662C433O44688C439O44698C445O44715C450O44724C454O44734C460O44746C462O44760", - "inlined": "", - "fns": [] - } - }, - { - "name": "wrapSafe node:internal/modules/cjs/loader:1257:18", - "type": "JS", - "kind": "Unopt", - "func": 133, - "tm": 41125, - "source": { - "script": 63, - "start": 40039, - "end": 42615, - "positions": "C0O40039C14O40121C26O40135C31O40121C36O40405C44O40440C49O40447C54O40447C60O40481C89O40481C95O41013C101O41035C115O41105C126O41035C131O41131C145O41138C150O41182C151O41205C159O41295C196O41295C202O42014C206O42046C224O42086C229O42108C234O42109C240O42126C245O42134C253O42134C258O42253C264O42275C278O42345C289O42275C294O42385C298O42394C310O42417C315O42429C322O42440C327O42498C335O42498C340O42479C345O42549C356O42549C361O42599C363O42599", - "inlined": "", - "fns": [] - } - }, - { - "name": "internalCompileFunction node:internal/vm:73:33", - "type": "JS", - "kind": "Unopt", - "func": 134, - "tm": 41209, - "source": { - "script": 36, - "start": 2177, - "end": 3028, - "positions": "C0O2366C35O2366C41O2568C45O2604C50O2641C54O2632C58O2679C64O2704C69O2733C73O2724C77O2770C85O2817C90O2854C94O2845C98O2881C102O2930C105O2969C110O2930C115O3012C117O3026", - "inlined": "", - "fns": [] - } - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", - "type": "JS", - "kind": "Unopt", - "func": 135, - "tm": 41375, - "source": { - "script": 81, - "start": 0, - "end": 119, - "positions": "C0O0C4O119", - "inlined": "", - "fns": [] - } - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", - "type": "JS", - "kind": "Unopt", - "func": 136, - "tm": 41417, - "source": { - "script": 81, - "start": 0, - "end": 119, - "positions": "C0O16C3O16C8O44C21O44C28O118", - "inlined": "", - "fns": [] - } - }, - { - "name": "registerImportModuleDynamically node:internal/vm:63:41", - "type": "JS", - "kind": "Unopt", - "func": 137, - "tm": 41459, - "source": { - "script": 36, - "start": 1818, - "end": 2143, - "positions": "C0O1898C6O1898C11O1866C16O1958C22O1958C27O1939C32O2014C37O2082C45O1999C51O2142", - "inlined": "", - "fns": [] - } - }, - { - "name": "importModuleDynamicallyWrap node:internal/vm/module:429:37", - "type": "JS", - "kind": "Unopt", - "func": 138, - "tm": 41500, - "source": { - "script": 68, - "start": 11681, - "end": 12124, - "positions": "C0O11681C13O11750C18O12122", - "inlined": "", - "fns": [] - } - }, - { - "name": "registerModule node:internal/modules/esm/utils:135:24", - "type": "JS", - "kind": "Unopt", - "func": 139, - "tm": 41959, - "source": { - "script": 66, - "start": 4020, - "end": 4540, - "positions": "C0O4062C2O4071C4O4070C8O4102C10O4119C12O4115C19O4170C21O4166C26O4404C27O4411C28O4455C41O4481C45O4497C50O4514C55O4514C62O4539", - "inlined": "", - "fns": [] - } - }, - { - "name": "makeRequireFunction node:internal/modules/helpers:127:29", - "type": "JS", - "kind": "Unopt", - "func": 140, - "tm": 42000, - "source": { - "script": 64, - "start": 3790, - "end": 6294, - "positions": "C0O3790C22O3849C27O3849C30O3849C32O3865C37O3873C46O3907C64O3913C69O3907C70O4005C72O4016C92O4048C97O4052C108O4068C112O4048C114O4095C119O4095C122O4095C124O4127C130O4136C136O4164C145O5314C150O5800C152O5816C156O6067C158O6081C162O6093C177O6133C185O6093C190O6199C193O6227C197O6218C201O6243C204O6266C208O6257C212O6277C214O6292", - "inlined": "", - "fns": [] - } - }, - { - "name": "lazyModule node:internal/modules/helpers:110:20", - "type": "JS", - "kind": "Unopt", - "func": 141, - "tm": 42042, - "source": { - "script": 64, - "start": 3079, - "end": 3173, - "positions": "C0O3086C12O3107C17O3145C24O3094C30O3156C34O3171", - "inlined": "", - "fns": [] - } - }, - { - "name": "require node:internal/modules/helpers:174:31", - "type": "JS", - "kind": "Unopt", - "func": 142, - "tm": 42084, - "source": { - "script": 64, - "start": 5340, - "end": 5464, - "positions": "C0O5433C3O5444C8O5444C13O5458", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module.require node:internal/modules/cjs/loader:1227:36", - "type": "JS", - "kind": "Unopt", - "func": 143, - "tm": 42084, - "source": { - "script": 63, - "start": 39157, - "end": 39448, - "positions": "C0O39166C8O39166C13O39194C15O39201C20O39215C36O39221C41O39215C42O39330C51O39342C60O39358C63O39372C76O39372C93O39427C102O39439C126O39447", - "inlined": "", - "fns": [] - } - }, - { - "name": "loadBuiltinModule node:internal/modules/helpers:93:27", - "type": "JS", - "kind": "Unopt", - "func": 144, - "tm": 42125, - "source": { - "script": 64, - "start": 2613, - "end": 2967, - "positions": "C0O2631C5O2650C10O2650C17O2682C18O2689C19O2777C24O2791C29O2795C34O2795C40O2806C48O2806C53O2926C58O2926C62O2954C64O2965", - "inlined": "", - "fns": [] - } - }, - { - "name": "canBeRequiredByUsers node:internal/bootstrap/realm:284:30", - "type": "JS", - "kind": "Unopt", - "func": 145, - "tm": 42125, - "source": { - "script": 9, - "start": 9060, - "end": 9115, - "positions": "C0O9071C7O9103C12O9103C17O9111", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/helpers:37:66", - "type": "JS", - "kind": "Unopt", - "func": 146, - "tm": 42167, - "source": { - "script": 64, - "start": 1032, - "end": 1057, - "positions": "C0O1044C2O1050C9O1056", - "inlined": "", - "fns": [] - } - }, - { - "name": "compileForPublicLoader node:internal/bootstrap/realm:322:25", - "type": "JS", - "kind": "Unopt", - "func": 147, - "tm": 42167, - "source": { - "script": 9, - "start": 10128, - "end": 10818, - "positions": "C0O10137C5O10156C10O10182C15O10156C22O10309C32O10352C49O10315C54O10309C55O10389C60O10389C64O10431C70O10620C77O10651C85O10620C91O10675C96O10693C106O10709C109O10725C114O10709C118O10691C122O10750C127O10750C131O10775C136O10775C140O10806C144O10814", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:cluster:1:1", - "type": "JS", - "kind": "Unopt", - "func": 148, - "tm": 42250, - "source": { - "script": 82, - "start": 0, - "end": 1376, - "positions": "C0O0C4O1376", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:cluster:1:1", - "type": "JS", - "kind": "Unopt", - "func": 149, - "tm": 42292, - "source": { - "script": 82, - "start": 0, - "end": 1376, - "positions": "C0O1190C5O1266C13O1245C27O1312C32O1357C37O1329C41O1327C46O1375", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/primary:1:1", - "type": "JS", - "kind": "Unopt", - "func": 150, - "tm": 42500, - "source": { - "script": 83, - "start": 0, - "end": 10127, - "positions": "C0O0C4O10127", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/primary:1:1", - "type": "JS", - "kind": "Unopt", - "func": 151, - "tm": 42834 - }, - { - "name": " node:child_process:1:1", - "type": "JS", - "kind": "Unopt", - "func": 152, - "tm": 43209, - "source": { - "script": 84, - "start": 0, - "end": 27198, - "positions": "C0O0C4O27198", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:child_process:1:1", - "type": "JS", - "kind": "Unopt", - "func": 153, - "tm": 44167, - "source": { - "script": 84, - "start": 0, - "end": 27198, - "positions": "C0O0C287O1159C293O1175C299O1199C305O1225C311O1247C317O1276C323O1298C329O1321C335O1343C341O1367C347O1392C353O1419C359O1438C365O1454C370O1478C376O1511C382O1534C388O1545C394O1572C400O1596C406O1626C412O1771C418O1771C423O1669C429O1693C435O1718C441O1740C447O1756C452O1827C458O1827C463O1805C469O1871C475O1871C480O1904C493O1905C499O1871C501O1989C507O1989C512O1978C518O2051C521O2051C526O2016C532O2033C538O2149C544O2149C549O2092C555O2113C560O2127C566O2187C572O2212C578O2246C584O2283C590O2307C596O2378C602O2378C607O2349C613O2363C619O2426C625O2426C630O2405C636O2594C642O2594C647O2466C653O2477C659O2500C665O2517C671O2536C677O2556C683O2574C689O2648C695O2648C699O2648C701O2766C704O2693C710O2710C716O2726C722O2742C728O2801C734O2801C736O2829C739O2837C746O2846C749O2829C751O2863C752O2863C754O6932C759O7336C769O7395C780O7299C785O13751C795O13810C806O13710C811O27068C821O27089C827O27103C833O27119C839O27127C845O27139C851O27155C857O27167C863O27175C869O27184C875O27083C880O27197", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/child_process:1:1", - "type": "JS", - "kind": "Unopt", - "func": 154, - "tm": 44667, - "source": { - "script": 85, - "start": 0, - "end": 31777, - "positions": "C0O0C4O31777", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/child_process:1:1", - "type": "JS", - "kind": "Unopt", - "func": 155, - "tm": 45750 - }, - { - "name": " node:internal/child_process:536:1", - "type": "JS", - "kind": "Unopt", - "func": 156, - "tm": 45792, - "source": { - "script": 85, - "start": 13890, - "end": 14887, - "positions": "C3O13940C12O13956C21O13981C28O14887", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:net:1:1", - "type": "JS", - "kind": "Unopt", - "func": 157, - "tm": 46542, - "source": { - "script": 86, - "start": 0, - "end": 65921, - "positions": "C0O0C4O65921", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:net:1:1", - "type": "JS", - "kind": "Unopt", - "func": 158, - "tm": 48792 - }, - { - "name": " node:stream:1:1", - "type": "JS", - "kind": "Unopt", - "func": 159, - "tm": 49125, - "source": { - "script": 87, - "start": 0, - "end": 4792, - "positions": "C0O0C4O4792", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:stream:1:1", - "type": "JS", - "kind": "Unopt", - "func": 160, - "tm": 49334 - }, - { - "name": " node:internal/streams/operators:1:1", - "type": "JS", - "kind": "Unopt", - "func": 161, - "tm": 49542, - "source": { - "script": 88, - "start": 0, - "end": 10772, - "positions": "C0O0C4O10772", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/operators:1:1", - "type": "JS", - "kind": "Unopt", - "func": 162, - "tm": 49917, - "source": { - "script": 88, - "start": 0, - "end": 10772, - "positions": "C0O0C163O56C166O56C171O23C177O40C183O234C186O234C191O112C196O118C202O145C208O171C213O193C219O218C225O334C228O334C233O272C239O295C245O314C251O415C254O415C259O374C265O388C271O470C274O470C279O457C285O535C288O535C292O535C294O612C297O612C302O582C308O695C311O695C316O666C322O678C328O752C331O752C336O738C341O789C347O811C353O822C359O835C365O845C371O860C377O871C383O888C389O906C395O930C400O971C403O971C407O971C409O1002C412O1002C416O1002C418O6699C439O6659C441O10462C455O10517C466O10610C472O10618C478O10628C484O10639C490O10646C496O10654C502O10495C506O10674C518O10714C524O10723C530O10734C536O10744C542O10755C548O10763C554O10708C559O10771", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/abort_controller:1:1", - "type": "JS", - "kind": "Unopt", - "func": 163, - "tm": 50167, - "source": { - "script": 89, - "start": 0, - "end": 12472, - "positions": "C0O0C4O12472", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/abort_controller:1:1", - "type": "JS", - "kind": "Unopt", - "func": 164, - "tm": 50584 - }, - { - "name": " node:internal/abort_controller:378:1", - "type": "JS", - "kind": "Unopt", - "func": 165, - "tm": 50625, - "source": { - "script": 89, - "start": 10186, - "end": 10842, - "positions": "C4O10212C10O10842", - "inlined": "", - "fns": [] - } - }, - { - "name": "SafeFinalizationRegistry node:internal/per_context/primordials:440:16", - "type": "JS", - "kind": "Unopt", - "func": 166, - "tm": 50709, - "source": { - "script": 6, - "start": 12756, - "end": 12801, - "positions": "C3O12776C27O12776C42O12800", - "inlined": "", - "fns": [] - } - }, - { - "name": "defineEventHandler node:internal/event_target:1104:28", - "type": "JS", - "kind": "Unopt", - "func": 167, - "tm": 50792, - "source": { - "script": 47, - "start": 29162, - "end": 30601, - "positions": "C0O29162C24O29186C36O29280C41O29285C46O29434C56O29455C66O29509C77O29434C82O30371C92O30392C102O30446C113O30371C118O30467C125O30497C132O30534C138O30543C148O30467C154O30600", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/end-of-stream:1:1", - "type": "JS", - "kind": "Unopt", - "func": 168, - "tm": 52042, - "source": { - "script": 90, - "start": 0, - "end": 8360, - "positions": "C0O0C4O8360", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/end-of-stream:1:1", - "type": "JS", - "kind": "Unopt", - "func": 169, - "tm": 52334, - "source": { - "script": 90, - "start": 0, - "end": 8360, - "positions": "C0O0C120O172C126O172C131O147C137O161C142O210C148O234C154O309C160O309C165O283C171O299C177O427C183O427C188O345C194O368C200O388C206O406C212O470C218O481C224O505C230O833C236O833C241O548C247O560C253O574C259O598C265O618C271O640C277O661C283O675C289O699C295O719C301O741C307O762C313O793C319O811C325O872C326O872C328O1000C332O1000C334O8302C336O8317C340O8331C347O8348C352O8359", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/utils:1:1", - "type": "JS", - "kind": "Unopt", - "func": 170, - "tm": 52500, - "source": { - "script": 91, - "start": 0, - "end": 8416, - "positions": "C0O0C4O8416", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/utils:1:1", - "type": "JS", - "kind": "Unopt", - "func": 171, - "tm": 52792, - "source": { - "script": 91, - "start": 0, - "end": 8416, - "positions": "C0O0C169O25C175O48C181O66C186O346C190O346C194O346C196O403C200O403C204O403C206O459C210O459C214O459C216O516C220O516C224O516C226O574C230O574C234O574C236O638C240O638C245O718C249O718C254O7817C262O7838C268O7853C274O7869C280O7884C286O7900C292O7913C298O7927C304O7941C310O7956C316O7976C322O8004C328O8019C334O8031C340O8053C346O8067C352O8081C358O8105C364O8125C370O8144C376O8166C382O8187C388O8203C394O8218C400O8232C406O8256C412O8276C418O8295C424O8317C430O8338C436O8357C442O8377C448O8394C454O7832C459O8415", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/compose:1:1", - "type": "JS", - "kind": "Unopt", - "func": 172, - "tm": 52959, - "source": { - "script": 92, - "start": 0, - "end": 5451, - "positions": "C0O0C4O5451", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/compose:1:1", - "type": "JS", - "kind": "Unopt", - "func": 173, - "tm": 53167, - "source": { - "script": 92, - "start": 0, - "end": 5451, - "positions": "C0O0C47O36C50O36C55O23C61O89C64O89C68O89C70O147C73O147C78O133C84O316C87O316C92O194C98O210C104O224C110O238C116O253C122O274C128O294C134O442C137O442C142O361C148O382C153O388C159O415C165O482C168O482C172O482C174O526C178O541C183O5450", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/pipeline:1:1", - "type": "JS", - "kind": "Unopt", - "func": 174, - "tm": 53334, - "source": { - "script": 93, - "start": 0, - "end": 12326, - "positions": "C0O0C4O12326", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/pipeline:1:1", - "type": "JS", - "kind": "Unopt", - "func": 175, - "tm": 53792, - "source": { - "script": 93, - "start": 0, - "end": 12326, - "positions": "C0O0C153O138C159O154C165O165C171O188C177O233C183O233C187O233C189O293C195O293C200O284C206O339C212O339C216O339C218O391C224O391C228O391C230O627C236O627C241O437C247O466C252O472C258O498C264O528C270O550C276O576C282O611C288O711C294O711C299O666C305O686C311O902C317O902C322O754C328O768C334O782C340O806C346O822C352O843C358O858C364O878C370O965C376O965C381O945C387O1008C388O1008C390O1025C391O1025C393O1039C394O1039C396O12281C403O12300C409O12314C415O12296C420O12325", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/destroy:1:1", - "type": "JS", - "kind": "Unopt", - "func": 176, - "tm": 53917, - "source": { - "script": 94, - "start": 0, - "end": 6826, - "positions": "C0O0C4O6826", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/destroy:1:1", - "type": "JS", - "kind": "Unopt", - "func": 177, - "tm": 54209, - "source": { - "script": 94, - "start": 0, - "end": 6826, - "positions": "C0O0C122O106C125O106C130O25C136O54C141O60C147O90C153O144C158O245C161O245C166O179C172O195C178O210C184O224C190O298C193O298C197O298C199O337C202O337C206O337C208O6736C215O6757C221O6770C227O6783C233O6794C239O6807C245O6751C250O6825", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/duplex:1:1", - "type": "JS", - "kind": "Unopt", - "func": 178, - "tm": 54334, - "source": { - "script": 95, - "start": 0, - "end": 4938, - "positions": "C0O0C4O4938", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/duplex:1:1", - "type": "JS", - "kind": "Unopt", - "func": 179, - "tm": 54542, - "source": { - "script": 95, - "start": 0, - "end": 4938, - "positions": "C0O0C33O1383C38O1409C43O1443C48O1457C53O1497C55O1512C59O1540C65O1540C69O1540C71O1595C77O1595C81O1595C83O1634C86O1662C94O1682C99O1634C104O1694C110O1694C115O1752C118O1772C123O1752C128O1838C130O1850C134O1843C139O1884C141O1888C145O1897C148O1909C155O1918C160O1934C163O1941C171O1970C178O1979C181O1959C185O1859C190O1825C194O2665C197O2695C207O2724C215O2786C224O2746C243O2841C251O2903C260O2863C279O2968C287O3030C296O2990C315O3088C323O3150C332O3110C351O3204C359O3266C368O3226C387O3322C395O3384C404O3344C423O3440C431O3502C440O3462C459O3555C467O3617C476O3577C495O3673C503O3735C512O3695C531O3784C536O3811C544O4029C558O2665C563O4306C564O4306C566O4530C573O4545C577O4668C584O4681C588O4779C589O4779C591O4791C598O4803C603O4937", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/readable:1:1", - "type": "JS", - "kind": "Unopt", - "func": 180, - "tm": 55084, - "source": { - "script": 96, - "start": 0, - "end": 49050, - "positions": "C0O0C4O49050", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/readable:1:1", - "type": "JS", - "kind": "Unopt", - "func": 181, - "tm": 56834 - }, - { - "name": " node:internal/streams/legacy:1:1", - "type": "JS", - "kind": "Unopt", - "func": 182, - "tm": 57167, - "source": { - "script": 97, - "start": 0, - "end": 2934, - "positions": "C0O0C4O2934", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/legacy:1:1", - "type": "JS", - "kind": "Unopt", - "func": 183, - "tm": 57292, - "source": { - "script": 97, - "start": 0, - "end": 2934, - "positions": "C0O0C22O25C28O41C33O92C36O92C40O92C42O189C50O203C55O161C60O215C63O215C68O257C77O272C81O2888C88O2907C94O2915C100O2903C105O2933", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/add-abort-signal:1:1", - "type": "JS", - "kind": "Unopt", - "func": 184, - "tm": 57375, - "source": { - "script": 98, - "start": 0, - "end": 1704, - "positions": "C0O0C4O1704", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/add-abort-signal:1:1", - "type": "JS", - "kind": "Unopt", - "func": 185, - "tm": 57459, - "source": { - "script": 98, - "start": 0, - "end": 1704, - "positions": "C0O0C40O25C46O93C52O93C57O68C63O82C68O193C74O193C79O132C85O148C91O163C97O241C103O241C107O241C109O292C115O328C116O328C118O557C122O557C124O719C127O726C136O749C140O1065C143O1072C152O1105C157O1703", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/buffer_list:1:1", - "type": "JS", - "kind": "Unopt", - "func": 186, - "tm": 57542, - "source": { - "script": 99, - "start": 0, - "end": 4060, - "positions": "C0O0C4O4060", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/buffer_list:1:1", - "type": "JS", - "kind": "Unopt", - "func": 187, - "tm": 57709, - "source": { - "script": 99, - "start": 0, - "end": 4060, - "positions": "C0O0C20O25C26O49C31O67C37O93C43O142C46O142C51O131C57O181C60O181C65O169C71O216C120O2055C143O3869C147O3869C169O231C174O4059", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/state:1:1", - "type": "JS", - "kind": "Unopt", - "func": 188, - "tm": 57792, - "source": { - "script": 100, - "start": 0, - "end": 1332, - "positions": "C0O0C4O1332", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/state:1:1", - "type": "JS", - "kind": "Unopt", - "func": 189, - "tm": 57834, - "source": { - "script": 100, - "start": 0, - "end": 1332, - "positions": "C0O0C45O25C51O38C57O100C60O100C65O80C71O167C74O167C79O193C84O141C90O234C94O234C96O282C98O282C100O1236C107O1257C113O1277C119O1304C125O1251C130O1331", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:string_decoder:1:1", - "type": "JS", - "kind": "Unopt", - "func": 190, - "tm": 57917, - "source": { - "script": 101, - "start": 0, - "end": 5213, - "positions": "C0O0C4O5213", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:string_decoder:1:1", - "type": "JS", - "kind": "Unopt", - "func": 191, - "tm": 58125, - "source": { - "script": 101, - "start": 0, - "end": 5213, - "positions": "C0O0C70O1159C76O1180C81O1206C86O1216C92O1282C95O1282C100O1271C106O1465C109O1465C114O1311C120O1341C126O1369C132O1386C138O1404C144O1422C150O1431C156O1441C162O1450C167O1521C170O1521C174O1521C176O1627C179O1627C184O1653C189O1557C195O1581C201O1601C207O1680C213O1700C217O1686C220O1680C222O1744C225O1744C229O1744C231O2414C232O2414C234O2431C236O2448C240O2436C245O2463C250O2485C256O2490C260O2458C265O2418C269O3209C278O3225C282O3873C291O3887C295O4274C304O4289C308O4488C318O4513C323O4586C337O4818C342O4891C356O4974C361O5047C375O4451C380O5174C382O5196C387O5212", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/from:1:1", - "type": "JS", - "kind": "Unopt", - "func": 192, - "tm": 58250, - "source": { - "script": 102, - "start": 0, - "end": 2614, - "positions": "C0O0C4O2614", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/from:1:1", - "type": "JS", - "kind": "Unopt", - "func": 193, - "tm": 58375, - "source": { - "script": 102, - "start": 0, - "end": 2614, - "positions": "C0O0C32O25C38O49C44O72C50O124C53O124C58O113C64O206C67O206C72O232C77O154C83O178C89O2591C91O2606C96O2613", - "inlined": "", - "fns": [] - } - }, - { - "name": "makeBitMapDescriptor node:internal/streams/readable:120:30", - "type": "JS", - "kind": "Unopt", - "func": 194, - "tm": 58459, - "source": { - "script": 96, - "start": 3765, - "end": 3958, - "positions": "C0O3765C9O3775C14O3811C22O3861C32O3956", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/writable:1:1", - "type": "JS", - "kind": "Unopt", - "func": 195, - "tm": 58917, - "source": { - "script": 103, - "start": 0, - "end": 33751, - "positions": "C0O0C4O33751", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/writable:1:1", - "type": "JS", - "kind": "Unopt", - "func": 196, - "tm": 60084 - }, - { - "name": "makeBitMapDescriptor node:internal/streams/writable:116:30", - "type": "JS", - "kind": "Unopt", - "func": 197, - "tm": 60292, - "source": { - "script": 103, - "start": 3773, - "end": 3966, - "positions": "C0O3773C9O3783C14O3819C22O3869C32O3964", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:stream/promises:1:1", - "type": "JS", - "kind": "Unopt", - "func": 198, - "tm": 60459, - "source": { - "script": 104, - "start": 0, - "end": 917, - "positions": "C0O0C4O917", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:stream/promises:1:1", - "type": "JS", - "kind": "Unopt", - "func": 199, - "tm": 60500, - "source": { - "script": 104, - "start": 0, - "end": 917, - "positions": "C0O0C28O25C34O46C40O130C43O130C48O83C54O97C60O113C66O195C69O195C74O188C80O254C83O254C88O241C93O298C96O298C100O871C107O892C113O904C119O886C124O916", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/transform:1:1", - "type": "JS", - "kind": "Unopt", - "func": 200, - "tm": 60625, - "source": { - "script": 105, - "start": 0, - "end": 7368, - "positions": "C0O0C4O7368", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/transform:1:1", - "type": "JS", - "kind": "Unopt", - "func": 201, - "tm": 60875, - "source": { - "script": 105, - "start": 0, - "end": 7368, - "positions": "C0O0C39O3508C44O3532C49O3558C51O3573C55O3628C58O3628C63O3654C68O3596C74O3677C77O3677C81O3677C83O3742C86O3742C91O3721C97O3777C100O3808C108O3826C113O3777C118O3838C124O3838C129O3898C132O3898C136O3898C138O6278C141O6288C148O6305C152O6315C155O6325C164O6346C168O6446C171O6456C180O6473C184O7213C187O7223C196O7239C201O7367", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/passthrough:1:1", - "type": "JS", - "kind": "Unopt", - "func": 202, - "tm": 60959, - "source": { - "script": 106, - "start": 0, - "end": 1762, - "positions": "C0O0C4O1762", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/streams/passthrough:1:1", - "type": "JS", - "kind": "Unopt", - "func": 203, - "tm": 61000, - "source": { - "script": 106, - "start": 0, - "end": 1762, - "positions": "C0O0C14O1288C19O1328C21O1343C25O1377C28O1377C32O1377C34O1416C37O1449C45O1470C50O1416C55O1482C61O1482C66O1673C69O1685C78O1706C83O1761", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/stream_base_commons:1:1", - "type": "JS", - "kind": "Unopt", - "func": 204, - "tm": 61292, - "source": { - "script": 107, - "start": 0, - "end": 7041, - "positions": "C0O0C4O7041", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/stream_base_commons:1:1", - "type": "JS", - "kind": "Unopt", - "func": 205, - "tm": 61542, - "source": { - "script": 107, - "start": 0, - "end": 7041, - "positions": "C0O0C130O25C136O34C141O79C144O79C149O68C155O121C158O121C163O106C169O275C172O275C177O159C183O172C189O193C195O215C201O232C207O254C213O326C216O326C221O315C227O379C230O379C235O359C241O432C244O432C249O463C254O415C260O536C263O536C268O483C274O495C280O514C286O589C289O589C294O572C300O646C303O646C308O629C314O694C317O694C322O673C328O749C331O749C335O749C337O795C340O795C344O795C346O844C349O844C353O844C355O888C358O888C362O888C364O924C367O924C371O924C373O957C376O957C381O990C394O991C400O957C402O1054C405O1054C409O1054C411O1092C414O1092C418O1092C420O1132C423O1132C427O1132C429O6836C436O6857C442O6874C448O6890C454O6906C460O6926C466O6943C472O6959C478O6970C484O6982C490O7002C496O7013C502O7026C508O6851C513O7040", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:diagnostics_channel:1:1", - "type": "JS", - "kind": "Unopt", - "func": 206, - "tm": 61750, - "source": { - "script": 108, - "start": 0, - "end": 9791, - "positions": "C0O0C4O9791", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:diagnostics_channel:1:1", - "type": "JS", - "kind": "Unopt", - "func": 207, - "tm": 62125, - "source": { - "script": 108, - "start": 0, - "end": 9791, - "positions": "C0O0C131O25C137O45C143O70C149O92C155O116C161O144C167O168C173O192C179O203C185O227C191O245C197O262C203O278C209O289C214O380C217O380C222O343C227O349C233O440C236O440C241O418C247O510C250O510C255O481C261O564C264O564C269O546C297O759C354O734C409O2160C427O3888C503O3717C505O4516C507O4516C512O4516C514O5148C518O5148C565O5359C567O9683C574O9704C580O9715C586O9733C592O9746C598O9764C604O9779C610O9698C615O9790", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:diagnostics_channel:35:1", - "type": "JS", - "kind": "Unopt", - "func": 208, - "tm": 62167, - "source": { - "script": 108, - "start": 734, - "end": 1143, - "positions": "C0O734C14O785C28O785C39O1143", - "inlined": "", - "fns": [] - } - }, - { - "name": "WeakRefMap node:diagnostics_channel:35:1", - "type": "JS", - "kind": "Unopt", - "func": 209, - "tm": 62250, - "source": { - "script": 108, - "start": 734, - "end": 734, - "positions": "C0O734C5O734C29O734C51O734", - "inlined": "", - "fns": [] - } - }, - { - "name": "channel node:diagnostics_channel:213:17", - "type": "JS", - "kind": "Unopt", - "func": 210, - "tm": 62292, - "source": { - "script": 108, - "start": 4551, - "end": 4801, - "positions": "C0O4578C5O4587C10O4587C16O4600C18O4613C20O4628C21O4632C33O4696C51O4702C56O4696C57O4774C64O4781C69O4799", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:diagnostics_channel:45:6", - "type": "JS", - "kind": "Unopt", - "func": 211, - "tm": 62334, - "source": { - "script": 108, - "start": 980, - "end": 1025, - "positions": "C0O992C2O1005C13O1005C21O1013C26O1015C33O1021", - "inlined": "", - "fns": [] - } - }, - { - "name": "Channel node:diagnostics_channel:168:14", - "type": "JS", - "kind": "Unopt", - "func": 212, - "tm": 62334, - "source": { - "script": 108, - "start": 3746, - "end": 3876, - "positions": "C0O3759C1O3777C5O3794C6O3807C10O3824C12O3834C16O3847C23O3856C28O3856C35O3875", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:diagnostics_channel:40:6", - "type": "JS", - "kind": "Unopt", - "func": 213, - "tm": 62375, - "source": { - "script": 108, - "start": 859, - "end": 973, - "positions": "C0O878C2O883C6O895C11O895C17O921C19O934C28O947C33O943C45O934C50O969", - "inlined": "", - "fns": [] - } - }, - { - "name": "WeakReference node:internal/util:835:14", - "type": "JS", - "kind": "Unopt", - "func": 214, - "tm": 62375, - "source": { - "script": 16, - "start": 22980, - "end": 23036, - "positions": "C0O22980C14O22995C21O23012C26O23008C31O23006C36O23035", - "inlined": "", - "fns": [] - } - }, - { - "name": "SafeWeakRef node:internal/per_context/primordials:447:16", - "type": "JS", - "kind": "Unopt", - "func": 215, - "tm": 62375, - "source": { - "script": 6, - "start": 12965, - "end": 12992, - "positions": "C3O12976C27O12976C42O12991", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/perf/observe:1:1", - "type": "JS", - "kind": "Unopt", - "func": 216, - "tm": 62625, - "source": { - "script": 109, - "start": 0, - "end": 16722, - "positions": "C0O0C4O16722", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/perf/observe:1:1", - "type": "JS", - "kind": "Unopt", - "func": 217, - "tm": 63250 - }, - { - "name": " node:internal/perf/observe:243:1", - "type": "JS", - "kind": "Unopt", - "func": 218, - "tm": 63292, - "source": { - "script": 109, - "start": 5936, - "end": 9533, - "positions": "C3O5976C13O5996C20O5996C34O6013C43O6022C49O9533", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/perf/performance_entry:1:1", - "type": "JS", - "kind": "Unopt", - "func": 219, - "tm": 63459, - "source": { - "script": 110, - "start": 0, - "end": 3272, - "positions": "C0O0C4O3272", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/perf/performance_entry:1:1", - "type": "JS", - "kind": "Unopt", - "func": 220, - "tm": 63584, - "source": { - "script": 110, - "start": 0, - "end": 3272, - "positions": "C0O0C53O25C58O51C63O134C66O134C71O94C76O100C82O231C85O231C90O194C95O206C100O291C103O291C108O265C114O344C117O344C122O332C128O376C131O376C135O376C137O428C140O428C144O428C146O485C149O485C153O485C155O541C158O541C162O541C164O594C167O594C171O594C173O652C176O652C180O652C211O1595C238O750C240O2067C243O2107C255O2128C261O2162C267O2196C273O2229C279O2260C283O2067C291O2518C319O2483C321O3114C328O3135C334O3161C340O3181C346O3203C352O3227C358O3257C364O3129C369O3271", - "inlined": "", - "fns": [] - } - }, - { - "name": "protoGetter node:net:866:21", - "type": "JS", - "kind": "Unopt", - "func": 221, - "tm": 63750, - "source": { - "script": 86, - "start": 22667, - "end": 22829, - "positions": "C0O22688C8O22716C13O22727C20O22812C27O22688C33O22828", - "inlined": "", - "fns": [] - } - }, - { - "name": "protoGetter node:net:866:21", - "type": "JS", - "kind": "Sparkplug", - "func": 221, - "tm": 63792, - "source": { - "script": 86, - "start": 22667, - "end": 22829, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "Module._nodeModulePaths node:internal/modules/cjs/loader:793:37", - "type": "JS", - "kind": "Sparkplug", - "func": 78, - "tm": 63834, - "source": { - "script": 63, - "start": 24237, - "end": 25417, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "toNamespacedPath node:path:1269:19", - "type": "JS", - "kind": "Sparkplug", - "func": 101, - "tm": 63834, - "source": { - "script": 34, - "start": 38744, - "end": 38804, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "nextPart node:fs:2600:31", - "type": "JS", - "kind": "Sparkplug", - "func": 117, - "tm": 63834, - "source": { - "script": 55, - "start": 68560, - "end": 68618, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "isFileType node:fs:206:20", - "type": "JS", - "kind": "Sparkplug", - "func": 119, - "tm": 63875, - "source": { - "script": 55, - "start": 5086, - "end": 5327, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "dirname node:path:1278:10", - "type": "JS", - "kind": "Sparkplug", - "func": 73, - "tm": 63875, - "source": { - "script": 34, - "start": 38877, - "end": 39546, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "validateString node:internal/validators:160:24", - "type": "JS", - "kind": "Sparkplug", - "func": 222, - "tm": 63917, - "source": { - "script": 15, - "start": 4120, - "end": 4229, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "makeBitMapDescriptor node:internal/streams/readable:120:30", - "type": "JS", - "kind": "Sparkplug", - "func": 194, - "tm": 63917, - "source": { - "script": 96, - "start": 3765, - "end": 3958, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "makeBitMapDescriptor node:internal/streams/writable:116:30", - "type": "JS", - "kind": "Sparkplug", - "func": 197, - "tm": 63959, - "source": { - "script": 103, - "start": 3773, - "end": 3966, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "getDeprecationWarningEmitter node:internal/util:111:38", - "type": "JS", - "kind": "Sparkplug", - "func": 223, - "tm": 63959, - "source": { - "script": 16, - "start": 2733, - "end": 3345, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:dgram:1:1", - "type": "JS", - "kind": "Unopt", - "func": 224, - "tm": 64334, - "source": { - "script": 111, - "start": 0, - "end": 28253, - "positions": "C0O0C4O28253", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:dgram:1:1", - "type": "JS", - "kind": "Unopt", - "func": 225, - "tm": 65292 - }, - { - "name": " node:internal/dgram:1:1", - "type": "JS", - "kind": "Unopt", - "func": 226, - "tm": 65500, - "source": { - "script": 112, - "start": 0, - "end": 1851, - "positions": "C0O0C4O1851", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/dgram:1:1", - "type": "JS", - "kind": "Unopt", - "func": 227, - "tm": 65584, - "source": { - "script": 112, - "start": 0, - "end": 1851, - "positions": "C0O0C56O25C62O50C67O94C73O94C78O84C83O138C86O138C91O130C97O195C103O195C108O175C114O264C120O264C125O231C131O242C137O318C140O318C145O304C151O351C157O404C160O404C165O432C166O432C168O1777C175O1798C181O1814C187O1837C193O1792C198O1850", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/socket_list:1:1", - "type": "JS", - "kind": "Unopt", - "func": 228, - "tm": 65792, - "source": { - "script": 113, - "start": 0, - "end": 2709, - "positions": "C0O0C4O2709", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/socket_list:1:1", - "type": "JS", - "kind": "Unopt", - "func": 229, - "tm": 65875, - "source": { - "script": 113, - "start": 0, - "end": 2709, - "positions": "C0O0C8O57C11O57C16O83C21O23C27O113C30O113C35O218C72O1527C99O2653C106O2672C112O2688C118O2668C123O2708", - "inlined": "", - "fns": [] - } - }, - { - "name": "customPromiseExecFunction node:child_process:239:35", - "type": "JS", - "kind": "Unopt", - "func": 230, - "tm": 65959, - "source": { - "script": 84, - "start": 6932, - "end": 7296, - "positions": "C0O6932C9O6946C13O7294", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/round_robin_handle:1:1", - "type": "JS", - "kind": "Unopt", - "func": 231, - "tm": 66042, - "source": { - "script": 114, - "start": 0, - "end": 3453, - "positions": "C0O0C4O3453", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/round_robin_handle:1:1", - "type": "JS", - "kind": "Unopt", - "func": 232, - "tm": 66167, - "source": { - "script": 114, - "start": 0, - "end": 3453, - "positions": "C0O0C46O25C52O41C58O52C64O94C67O94C71O94C73O134C76O134C80O134C82O173C85O173C90O158C96O256C99O256C104O216C110O224C116O230C122O239C128O245C134O310C137O310C142O296C148O340C150O355C154O1336C163O1350C167O2001C176O2018C180O2399C189O2420C193O2862C202O2880C207O3452", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/utils:1:1", - "type": "JS", - "kind": "Unopt", - "func": 233, - "tm": 66250, - "source": { - "script": 115, - "start": 0, - "end": 1054, - "positions": "C0O0C4O1054", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/utils:1:1", - "type": "JS", - "kind": "Unopt", - "func": 234, - "tm": 66292, - "source": { - "script": 115, - "start": 0, - "end": 1054, - "positions": "C0O0C24O25C30O41C35O68C42O89C48O103C54O83C58O135C60O135C65O135C67O160C68O160C71O1053", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/shared_handle:1:1", - "type": "JS", - "kind": "Unopt", - "func": 235, - "tm": 66375, - "source": { - "script": 116, - "start": 0, - "end": 1102, - "positions": "C0O0C4O1102", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/shared_handle:1:1", - "type": "JS", - "kind": "Unopt", - "func": 236, - "tm": 66417, - "source": { - "script": 116, - "start": 0, - "end": 1102, - "positions": "C0O0C22O22C28O62C31O62C35O62C37O104C40O104C44O104C46O143C49O143C53O143C55O160C57O175C61O685C70O699C74O861C83O878C88O1101", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/worker:1:1", - "type": "JS", - "kind": "Unopt", - "func": 237, - "tm": 66459, - "source": { - "script": 117, - "start": 0, - "end": 1379, - "positions": "C0O0C4O1379", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/cluster/worker:1:1", - "type": "JS", - "kind": "Unopt", - "func": 238, - "tm": 66542, - "source": { - "script": 117, - "start": 0, - "end": 1379, - "positions": "C0O0C20O25C25O49C31O102C34O102C38O102C40O147C43O147C48O130C54O174C56O189C60O876C63O904C71O928C76O876C81O940C87O940C92O985C95O992C104O1007C108O1073C111O1080C120O1095C124O1181C127O1188C136O1205C140O1299C143O1306C152O1328C157O1378", - "inlined": "", - "fns": [] - } - }, - { - "name": "getESMFacade node:internal/bootstrap/realm:340:15", - "type": "JS", - "kind": "Unopt", - "func": 239, - "tm": 66625, - "source": { - "script": 9, - "start": 10834, - "end": 11584, - "positions": "C0O10834C8O10852C14O10872C18O10879C19O10907C29O10907C34O10892C39O11025C46O11057C53O11025C58O11091C61O11104C70O11130C72O11130C74O11160C81O11185C86O11160C91O11202C101O11202C106O11250C108O11302C121O11264C126O11262C130O11498C135O11505C140O11505C144O11529C149O11536C159O11536C165O11573C169O11580", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/bootstrap/realm:351:15", - "type": "JS", - "kind": "Unopt", - "func": 240, - "tm": 66667, - "source": { - "script": 9, - "start": 11329, - "end": 11424, - "positions": "C0O11342C5O11350C10O11350C14O11378C24O11399C27O11407C32O11378C39O11423", - "inlined": "", - "fns": [] - } - }, - { - "name": "syncExports node:internal/bootstrap/realm:365:14", - "type": "JS", - "kind": "Unopt", - "func": 241, - "tm": 66667, - "source": { - "script": 9, - "start": 11891, - "end": 12224, - "positions": "C0O11919C5O11944C11O11973C13O11986C17O11978C22O12028C24O12033C28O12046C30O12061C35O12076C37O12099C42O12106C51O12158C54O12170C59O12196C67O12158C73O12106C79O11995C84O11960C89O12223", - "inlined": "", - "fns": [] - } - }, - { - "name": "getOwn node:internal/bootstrap/realm:202:16", - "type": "JS", - "kind": "Unopt", - "func": 242, - "tm": 66709, - "source": { - "script": 9, - "start": 6377, - "end": 6531, - "positions": "C0O6413C5O6420C14O6474C26O6474C34O6529", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/cjs/loader:122:3", - "type": "JS", - "kind": "Unopt", - "func": 243, - "tm": 66750, - "source": { - "script": 63, - "start": 3697, - "end": 3751, - "positions": "C0O3741C6O3703C11O3741C15O3751", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/process/esm_loader:1:1", - "type": "JS", - "kind": "Unopt", - "func": 244, - "tm": 66792, - "source": { - "script": 118, - "start": 0, - "end": 1190, - "positions": "C0O0C4O1190", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/process/esm_loader:1:1", - "type": "JS", - "kind": "Unopt", - "func": 245, - "tm": 66875, - "source": { - "script": 118, - "start": 0, - "end": 1190, - "positions": "C0O0C34O25C40O100C43O100C48O77C54O167C57O167C62O148C68O247C71O247C76O206C82O322C85O322C90O294C96O308C102O353C103O353C105O365C110O462C140O380C145O1189", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/loader:1:1", - "type": "JS", - "kind": "Unopt", - "func": 246, - "tm": 67084, - "source": { - "script": 119, - "start": 0, - "end": 22028, - "positions": "C0O0C4O22028", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/loader:1:1", - "type": "JS", - "kind": "Unopt", - "func": 247, - "tm": 67834, - "source": { - "script": 119, - "start": 0, - "end": 22028, - "positions": "C0O0C123O79C129O79C133O130C139O152C145O173C151O197C157O222C163O239C168O263C174O295C180O310C186O332C192O424C198O424C203O450C208O374C214O393C220O485C226O485C231O466C237O547C243O547C248O522C254O537C260O608C266O608C271O580C277O670C283O670C288O644C294O713C295O713C297O729C298O729C300O742C301O742C303O759C304O759C306O1876C307O1876C481O2304C483O15240C486O15274C493O15240C561O15293C563O17836C564O17836C566O21955C573O21976C579O21998C585O22015C591O21970C596O22027", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/loader:456:1", - "type": "JS", - "kind": "Unopt", - "func": 248, - "tm": 67875, - "source": { - "script": 119, - "start": 15293, - "end": 17803, - "positions": "C0O15352C6O17803", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/loader:83:1", - "type": "JS", - "kind": "Unopt", - "func": 249, - "tm": 67875, - "source": { - "script": 119, - "start": 2304, - "end": 15239, - "positions": "C3O2434C10O2434C18O2530C25O2530C34O2648C42O2719C47O2719C55O2822C60O2822C67O2944C72O2944C80O3172C88O3551C94O15239", - "inlined": "", - "fns": [] - } - }, - { - "name": "get esmLoader node:internal/process/esm_loader:17:16", - "type": "JS", - "kind": "Unopt", - "func": 250, - "tm": 67959, - "source": { - "script": 118, - "start": 399, - "end": 458, - "positions": "C0O408C10O429C15O429C22O425C28O454", - "inlined": "", - "fns": [] - } - }, - { - "name": "createModuleLoader node:internal/modules/esm/loader:530:28", - "type": "JS", - "kind": "Unopt", - "func": 251, - "tm": 68000, - "source": { - "script": 119, - "start": 18326, - "end": 19981, - "positions": "C10O18386C12O18394C22O18601C27O18638C32O18639C38O18687C46O18687C51O18752C57O18759C62O18772C75O18839C79O18839C81O19344C86O19352C101O19587C108O19619C111O19637C116O19619C125O19587C140O19459C147O19352C153O19832C159O19857C169O19879C174O19896C180O19939C187O19946C192O19979", - "inlined": "", - "fns": [] - } - }, - { - "name": "isLoaderWorker node:internal/modules/esm/utils:205:24", - "type": "JS", - "kind": "Unopt", - "func": 252, - "tm": 68042, - "source": { - "script": 66, - "start": 6908, - "end": 6940, - "positions": "C0O6915C4O6938", - "inlined": "", - "fns": [] - } - }, - { - "name": "ModuleLoader node:internal/modules/esm/loader:132:14", - "type": "JS", - "kind": "Unopt", - "func": 253, - "tm": 68042, - "source": { - "script": 119, - "start": 3582, - "end": 3764, - "positions": "C5O3582C24O3605C34O3609C40O3667C50O3667C54O3726C59O3726C65O3763", - "inlined": "", - "fns": [] - } - }, - { - "name": "getDefaultConditions node:internal/modules/esm/utils:41:30", - "type": "JS", - "kind": "Unopt", - "func": 254, - "tm": 68084, - "source": { - "script": 66, - "start": 955, - "end": 1032, - "positions": "C0O962C7O969C10O987C12O962C16O1005C20O1030", - "inlined": "", - "fns": [] - } - }, - { - "name": "newResolveCache node:internal/modules/esm/loader:35:25", - "type": "JS", - "kind": "Unopt", - "func": 255, - "tm": 68084, - "source": { - "script": 119, - "start": 950, - "end": 1056, - "positions": "C0O982C6O982C11O965C16O1035C21O1054", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/module_map:1:1", - "type": "JS", - "kind": "Unopt", - "func": 256, - "tm": 68167, - "source": { - "script": 120, - "start": 0, - "end": 3877, - "positions": "C0O0C4O3877", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/module_map:1:1", - "type": "JS", - "kind": "Unopt", - "func": 257, - "tm": 68334, - "source": { - "script": 120, - "start": 0, - "end": 3877, - "positions": "C0O0C36O25C42O47C48O68C54O90C60O107C66O121C71O179C77O179C82O155C88O231C94O231C99O264C112O265C118O231C120O342C126O342C131O368C136O317C142O403C148O403C153O384C179O838C227O811C231O2832C274O3826C281O3847C287O3860C293O3841C298O3876", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/assert:1:1", - "type": "JS", - "kind": "Unopt", - "func": 258, - "tm": 68417, - "source": { - "script": 121, - "start": 0, - "end": 3876, - "positions": "C0O0C4O3876", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/assert:1:1", - "type": "JS", - "kind": "Unopt", - "func": 259, - "tm": 68542, - "source": { - "script": 121, - "start": 0, - "end": 3876, - "positions": "C0O0C49O25C54O49C60O75C66O89C71O105C77O180C80O180C85O161C91O375C94O375C99O401C104O223C110O259C116O296C122O337C128O502C130O502C132O692C139O728C145O763C151O814C157O845C163O692C165O1271C168O1295C178O1271C183O1271C185O3809C192O3830C198O3853C204O3824C209O3875", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/assert:44:3", - "type": "JS", - "kind": "Unopt", - "func": 260, - "tm": 68625, - "source": { - "script": 121, - "start": 1326, - "end": 1364, - "positions": "C0O1341C2O1345C4O1341C8O1364", - "inlined": "", - "fns": [] - } - }, - { - "name": "ResolveCache node:internal/modules/esm/module_map:26:14", - "type": "JS", - "kind": "Unopt", - "func": 261, - "tm": 68625, - "source": { - "script": 120, - "start": 861, - "end": 878, - "positions": "C3O867C27O867C52O877", - "inlined": "", - "fns": [] - } - }, - { - "name": "newLoadCache node:internal/modules/esm/loader:44:22", - "type": "JS", - "kind": "Unopt", - "func": 262, - "tm": 68667, - "source": { - "script": 119, - "start": 1233, - "end": 1333, - "positions": "C0O1262C6O1262C11O1248C16O1315C21O1331", - "inlined": "", - "fns": [] - } - }, - { - "name": "LoadCache node:internal/modules/esm/module_map:90:14", - "type": "JS", - "kind": "Unopt", - "func": 263, - "tm": 68667, - "source": { - "script": 120, - "start": 2855, - "end": 2872, - "positions": "C3O2861C27O2861C42O2871", - "inlined": "", - "fns": [] - } - }, - { - "name": "getTranslators node:internal/modules/esm/loader:53:24", - "type": "JS", - "kind": "Unopt", - "func": 264, - "tm": 68709, - "source": { - "script": 119, - "start": 1518, - "end": 1617, - "positions": "C0O1549C6O1549C11O1533C16O1615", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/translators:1:1", - "type": "JS", - "kind": "Unopt", - "func": 265, - "tm": 68875, - "source": { - "script": 122, - "start": 0, - "end": 19320, - "positions": "C0O0C4O19320", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/modules/esm/translators:1:1", - "type": "JS", - "kind": "Unopt", - "func": 266, - "tm": 69584, - "source": { - "script": 122, - "start": 0, - "end": 19320, - "positions": "C0O0C208O25C214O46C220O57C226O70C232O94C238O127C244O141C250O157C256O178C261O189C267O200C273O227C279O256C285O280C291O309C297O319C303O355C308O357C314O448C315O448C317O673C320O673C325O648C331O719C337O719C341O719C343O772C349O772C354O755C360O828C366O828C371O795C377O804C383O813C389O890C395O890C400O855C406O876C412O977C418O977C423O945C429O958C435O1063C441O1063C446O1025C452O1040C458O1055C464O1100C470O1100C475O1133C488O1134C494O1100C496O1244C502O1244C507O1186C513O1211C519O1225C525O1349C531O1349C536O1375C541O1280C547O1310C553O1415C559O1415C564O1391C570O1483C573O1483C578O1523C584O1567C590O1567C594O1567C596O1635C602O1635C607O1615C613O1708C619O1708C624O1680C630O1799C631O1799C633O2447C635O2447C641O2462C643O2482C647O2497C649O2520C653O2553C654O2553C656O4909C669O4909C675O9562C677O9562C682O9562C684O11512C697O11512C703O11800C716O11800C722O15500C735O15500C741O15979C744O15987C751O15996C754O15979C756O16021C769O16021C775O18361C788O18361C795O19319", - "inlined": "", - "fns": [] - } - }, - { - "name": "setCustomizations node:internal/modules/esm/loader:187:20", - "type": "JS", - "kind": "Unopt", - "func": 267, - "tm": 69667, - "source": { - "script": 119, - "start": 5321, - "end": 5548, - "positions": "C0O5344C5O5365C9O5387C13O5460C17O5443C23O5503C24O5531C29O5547", - "inlined": "", - "fns": [] - } - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", - "type": "JS", - "kind": "Unopt", - "func": 268, - "tm": 70000, - "source": { - "script": 123, - "start": 0, - "end": 494, - "positions": "C0O0C4O494", - "inlined": "", - "fns": [] - } - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", - "type": "JS", - "kind": "Unopt", - "func": 269, - "tm": 70042, - "source": { - "script": 123, - "start": 0, - "end": 494, - "positions": "C0O25C3O25C8O56C13O118C16O130C21O155C30O127C42O185C53O227C65O219C70O219C72O294C76O301C81O316C93O392C101O301C106O412C110O419C115O434C119O442C135O476C140O484C148O419C156O493", - "inlined": "", - "fns": [] - } - }, - { - "name": "get BlockList node:net:2373:16", - "type": "JS", - "kind": "Unopt", - "func": 270, - "tm": 70084, - "source": { - "script": 86, - "start": 65392, - "end": 65481, - "positions": "C0O65401C14O65415C19O65444C26O65411C32O65460C36O65477", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/blocklist:1:1", - "type": "JS", - "kind": "Unopt", - "func": 271, - "tm": 70167, - "source": { - "script": 124, - "start": 0, - "end": 3880, - "positions": "C0O0C4O3880", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/blocklist:1:1", - "type": "JS", - "kind": "Unopt", - "func": 272, - "tm": 70292, - "source": { - "script": 124, - "start": 0, - "end": 3880, - "positions": "C0O0C35O25C41O36C46O60C51O128C54O128C59O107C65O205C68O205C73O191C78O294C81O294C86O242C92O268C98O386C101O386C106O340C111O358C116O368C121O451C124O451C129O439C135O502C138O502C142O502C144O546C147O546C152O529C158O612C161O612C166O638C171O585C177O689C180O689C185O655C191O670C197O746C204O885C241O3226C251O3387C277O3522C299O3694C304O3728C309O3738C313O3716C317O3790C322O3811C327O3751C332O3824C339O3845C345O3858C351O3839C356O3879", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/socketaddress:1:1", - "type": "JS", - "kind": "Unopt", - "func": 273, - "tm": 70417, - "source": { - "script": 125, - "start": 0, - "end": 3388, - "positions": "C0O0C4O3388", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/socketaddress:1:1", - "type": "JS", - "kind": "Unopt", - "func": 274, - "tm": 70542, - "source": { - "script": 125, - "start": 0, - "end": 3388, - "positions": "C0O0C41O25C46O49C51O143C54O143C59O100C65O118C71O129C77O257C80O257C85O185C91O203C97O221C103O237C109O345C112O345C117O307C122O313C128O435C131O435C136O405C141O417C147O482C150O482C155O470C161O573C164O573C169O527C174O545C179O555C184O634C187O634C191O634C193O669C196O669C200O669C202O717C235O2097C245O2340C255O2509C287O2904C309O3169C314O3209C319O3219C323O3191C327O3275C332O3300C337O3232C342O3313C349O3334C355O3351C361O3376C367O3328C372O3387", - "inlined": "", - "fns": [] - } - }, - { - "name": "get SocketAddress node:net:2377:20", - "type": "JS", - "kind": "Unopt", - "func": 275, - "tm": 70625, - "source": { - "script": 86, - "start": 65502, - "end": 65607, - "positions": "C0O65511C14O65529C19O65562C26O65525C32O65582C36O65603", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:worker_threads:1:1", - "type": "JS", - "kind": "Unopt", - "func": 276, - "tm": 70709, - "source": { - "script": 126, - "start": 0, - "end": 687, - "positions": "C0O0C4O687", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:worker_threads:1:1", - "type": "JS", - "kind": "Unopt", - "func": 277, - "tm": 70750, - "source": { - "script": 126, - "start": 0, - "end": 687, - "positions": "C0O140C3O140C8O25C13O41C18O54C23O72C28O94C33O116C38O128C43O286C46O286C51O179C56O194C61O212C66O240C71O264C76O354C79O354C84O328C89O383C96O404C102O420C108O435C114O453C120O477C126O505C132O529C138O547C144O559C150O572C156O622C162O642C168O664C174O398C179O686", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/worker:1:1", - "type": "JS", - "kind": "Unopt", - "func": 278, - "tm": 71042, - "source": { - "script": 127, - "start": 0, - "end": 16395, - "positions": "C0O0C4O16395", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/worker:1:1", - "type": "JS", - "kind": "Unopt", - "func": 279, - "tm": 71625 - }, - { - "name": " node:internal/perf/event_loop_utilization:1:1", - "type": "JS", - "kind": "Unopt", - "func": 280, - "tm": 71750, - "source": { - "script": 128, - "start": 0, - "end": 1527, - "positions": "C0O0C4O1527", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/perf/event_loop_utilization:1:1", - "type": "JS", - "kind": "Unopt", - "func": 281, - "tm": 71834, - "source": { - "script": 128, - "start": 0, - "end": 1527, - "positions": "C0O0C29O120C32O120C37O36C42O42C48O88C54O104C60O1449C67O1470C73O1502C79O1464C84O1526", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/worker/io:1:1", - "type": "JS", - "kind": "Unopt", - "func": 282, - "tm": 72084, - "source": { - "script": 129, - "start": 0, - "end": 15479, - "positions": "C0O0C4O15479", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/worker/io:1:1", - "type": "JS", - "kind": "Unopt", - "func": 283, - "tm": 72667 - }, - { - "name": " node:internal/error_serdes:1:1", - "type": "JS", - "kind": "Unopt", - "func": 284, - "tm": 72959, - "source": { - "script": 130, - "start": 0, - "end": 5723, - "positions": "C0O0C4O5723", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/error_serdes:1:1", - "type": "JS", - "kind": "Unopt", - "func": 285, - "tm": 73167, - "source": { - "script": 130, - "start": 0, - "end": 5723, - "positions": "C0O0C138O30C144O30C149O47C153O30C155O66C161O91C166O100C171O113C177O138C183O154C189O170C195O194C201O228C207O257C213O281C218O295C224O322C229O336C234O354C239O365C245O387C251O415C257O436C262O451C268O464C273O477C279O509C285O545C291O581C296O661C302O661C307O625C312O635C318O704C319O704C321O733C323O733C325O760C327O760C329O788C331O788C333O822C335O822C337O854C340O864C344O854C346O888C353O892C359O899C365O910C371O922C377O932C383O945C389O961C395O888C397O1005C400O1017C407O1005C412O1005C414O2716C415O2716C417O2913C418O2913C420O4448C421O4448C423O5668C430O5687C436O5703C442O5683C447O5722", - "inlined": "", - "fns": [] - } - }, - { - "name": "Socket node:net:353:16", - "type": "JS", - "kind": "Unopt", - "func": 286, - "tm": 73375 - }, - { - "name": "Duplex node:internal/streams/duplex:54:16", - "type": "JS", - "kind": "Unopt", - "func": 287, - "tm": 73459, - "source": { - "script": 95, - "start": 2011, - "end": 2663, - "positions": "C0O2025C2O2036C7O2060C12O2067C17O2087C18O2091C23O2100C28O2100C34O2123C39O2132C44O2132C50O2156C54O2204C62O2218C63O2194C67O2246C77O2279C83O2303C87O2323C93O2344C97O2363C103O2389C107O2420C117O2453C123O2477C127O2497C133O2519C137O2538C143O2559C147O2578C153O2602C159O2631C160O2650C165O2662", - "inlined": "", - "fns": [] - } - }, - { - "name": "Readable node:internal/streams/readable:314:18", - "type": "JS", - "kind": "Unopt", - "func": 288, - "tm": 73500, - "source": { - "script": 96, - "start": 10487, - "end": 11358, - "positions": "C0O10487C9O10501C16O10512C21O10538C28O10545C33O10567C34O10722C41O10738C44O10745C48O10727C52O10756C71O10778C76O10776C80O10825C84O10863C92O10890C95O10911C99O10901C103O10941C111O10971C114O10995C118O10985C122O11028C130O11060C133O11086C137O11076C141O11114C149O11125C151O11141C158O11164C166O11141C171O11186C178O11193C186O11193C192O11217C199O11229C212O11229C219O11357", - "inlined": "", - "fns": [] - } - }, - { - "name": "Stream node:internal/streams/legacy:10:16", - "type": "JS", - "kind": "Unopt", - "func": 289, - "tm": 73542, - "source": { - "script": 97, - "start": 127, - "end": 160, - "positions": "C0O138C5O141C10O141C17O159", - "inlined": "", - "fns": [] - } - }, - { - "name": "ReadableState node:internal/streams/readable:253:23", - "type": "JS", - "kind": "Unopt", - "func": 290, - "tm": 73625, - "source": { - "script": 96, - "start": 7949, - "end": 10467, - "positions": "C0O8287C6O8326C8O8355C11O8362C15O8344C20O8489C22O8494C27O8504C32O8517C34O8515C40O8532C42O8530C48O8547C50O8545C53O8502C57O8678C61O8701C67O8713C69O8718C78O8729C83O8726C87O8745C93O8761C95O8780C101O8804C103O8809C112O8820C117O8817C121O8978C126O8999C130O9013C145O9013C154O9086C159O9086C163O8997C167O9289C169O9307C172O9303C177O9301C181O9323C182O9335C186O9342C188O9353C192O9421C196O9444C206O9465C208O9470C217O9482C219O9481C224O9478C228O9570C232O9593C242O9616C244O9621C253O9633C255O9632C260O9629C264O9869C271O9876C279O9897C284O9944C291O9974C296O9993C298O9998C307O10009C312O10006C318O10040C323O10051C328O10051C335O10086C337O10107C343O10141C350O10147C355O10141C356O10299C357O10322C361O10333C365O10356C371O10372C373O10391C376O10413C383O10387C388O10385C392O10452C396O10442C401O10466", - "inlined": "", - "fns": [] - } - }, - { - "name": "getHighWaterMark node:internal/streams/state:32:26", - "type": "JS", - "kind": "Unopt", - "func": 291, - "tm": 73667, - "source": { - "script": 100, - "start": 826, - "end": 1234, - "positions": "C0O880C12O880C18O931C21O954C26O959C33O987C38O1013C47O1035C56O1080C69O1086C74O1080C75O1134C80O1141C84O1156C85O1183C88O1220C93O1190C97O1232", - "inlined": "", - "fns": [] - } - }, - { - "name": "highWaterMarkFrom node:internal/streams/state:14:27", - "type": "JS", - "kind": "Unopt", - "func": 292, - "tm": 73709, - "source": { - "script": 100, - "start": 313, - "end": 454, - "positions": "C0O363C7O395C15O415C19O433C25O452", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:internal/streams/readable:123:8", - "type": "JS", - "kind": "Unopt", - "func": 293, - "tm": 73709, - "source": { - "script": 96, - "start": 3814, - "end": 3855, - "positions": "C0O3819C4O3832C6O3831C12O3840C17O3847C21O3853", - "inlined": "", - "fns": [] - } - }, - { - "name": "getDefaultHighWaterMark node:internal/streams/state:19:33", - "type": "JS", - "kind": "Unopt", - "func": 294, - "tm": 73750, - "source": { - "script": 100, - "start": 488, - "end": 586, - "positions": "C0O505C6O525C12O558C14O584", - "inlined": "", - "fns": [] - } - }, - { - "name": "BufferList node:internal/streams/buffer_list:14:14", - "type": "JS", - "kind": "Unopt", - "func": 295, - "tm": 73750, - "source": { - "script": 99, - "start": 265, - "end": 338, - "positions": "C0O274C1O284C5O296C6O306C10O318C11O330C16O337", - "inlined": "", - "fns": [] - } - }, - { - "name": "construct node:internal/streams/destroy:219:19", - "type": "JS", - "kind": "Unopt", - "func": 296, - "tm": 73792, - "source": { - "script": 94, - "start": 4433, - "end": 4821, - "positions": "C0O4468C8O4501C9O4508C10O4533C15O4568C20O4587C24O4600C25O4614C29O4629C33O4642C34O4656C38O4679C45O4684C48O4679C54O4715C61O4729C64O4715C72O4741C77O4766C78O4773C79O4781C82O4789C90O4789C97O4820", - "inlined": "", - "fns": [] - } - }, - { - "name": "Writable node:internal/streams/writable:375:18", - "type": "JS", - "kind": "Unopt", - "func": 297, - "tm": 73834, - "source": { - "script": 103, - "start": 12486, - "end": 14066, - "positions": "C0O12486C9O13060C16O13077C19O13084C23O13066C27O13096C33O13114C44O13114C51O13170C58O13177C63O13199C64O13203C83O13225C88O13223C92O13272C96O13310C104O13338C107O13360C111O13350C115O13391C123O13420C126O13443C130O13433C134O13475C142O13505C145O13529C149O13519C153O13562C161O13590C164O13612C168O13602C172O13643C180O13675C183O13701C187O13691C191O13729C197O13743C204O13766C212O13743C217O13788C224O13795C232O13795C238O13819C245O13831C258O13831C265O14065", - "inlined": "", - "fns": [] - } - }, - { - "name": "WritableState node:internal/streams/writable:292:23", - "type": "JS", - "kind": "Unopt", - "func": 298, - "tm": 73917, - "source": { - "script": 103, - "start": 9280, - "end": 11922, - "positions": "C0O9614C6O9653C8O9682C11O9689C15O9671C20O9816C22O9821C27O9831C32O9839C34O9837C40O9854C42O9852C48O9867C50O9865C53O9829C57O9884C61O9907C67O9919C69O9924C78O9935C83O9932C87O9950C93O9966C95O9985C101O10005C103O10010C112O10021C117O10018C121O10222C126O10243C130O10257C145O10257C154O10330C159O10330C163O10241C167O10365C171O10389C181O10414C183O10419C192O10430C197O10427C201O10508C205O10531C215O10552C217O10557C226O10569C228O10568C233O10565C237O10657C241O10680C251O10703C253O10708C262O10720C264O10719C269O10716C273O10956C280O10963C288O10984C293O11031C300O11061C305O11080C307O11085C316O11096C321O11093C327O11127C332O11138C337O11138C344O11173C346O11178C355O11190C357O11189C362O11186C366O11216C368O11221C373O11244C379O11278C386O11284C391O11278C392O11481C393O11493C397O11566C398O11578C402O11640C405O11663C412O11663C418O11653C422O11752C423O11766C427O11774C430O11774C434O11901C435O11916C440O11921", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:internal/streams/writable:119:8", - "type": "JS", - "kind": "Unopt", - "func": 299, - "tm": 73959, - "source": { - "script": 103, - "start": 3822, - "end": 3863, - "positions": "C0O3827C4O3840C6O3839C12O3848C17O3855C21O3861", - "inlined": "", - "fns": [] - } - }, - { - "name": "resetBuffer node:internal/streams/writable:357:21", - "type": "JS", - "kind": "Unopt", - "func": 300, - "tm": 73959, - "source": { - "script": 103, - "start": 11944, - "end": 12088, - "positions": "C0O11956C2O11962C6O11978C10O11988C11O12008C15O12015C17O12021C26O12032C31O12046C33O12044C39O12029C43O12058C45O12064C54O12076C56O12075C61O12072C66O12087", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:internal/streams/readable:124:8", - "type": "JS", - "kind": "Unopt", - "func": 301, - "tm": 74000, - "source": { - "script": 96, - "start": 3864, - "end": 3950, - "positions": "C0O3880C4O3891C8O3896C17O3907C20O3904C26O3923C30O3928C39O3939C44O3936C49O3949", - "inlined": "", - "fns": [] - } - }, - { - "name": "createHandle node:net:165:22", - "type": "JS", - "kind": "Unopt", - "func": 302, - "tm": 74042, - "source": { - "script": 86, - "start": 4563, - "end": 4925, - "positions": "C0O4583C13O4583C18O4626C23O4626C28O4649C30O4658C35O4676C42O4699C46O4711C49O4725C57O4734C60O4748C67O4683C72O4762C73O4770C75O4779C80O4796C87O4818C91O4830C94O4843C102O4852C105O4865C112O4803C117O4879C118O4887C125O4893C130O4887", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/validators:114:3", - "type": "JS", - "kind": "Unopt", - "func": 303, - "tm": 74042, - "source": { - "script": 15, - "start": 2811, - "end": 3274, - "positions": "C36O2952C42O2991C58O2997C63O2991C64O3056C69O3061C75O3093C91O3099C96O3093C97O3158C99O3168C106O3183C111O3198C121O3237C134O3250C147O3204C152O3198C154O3273", - "inlined": "", - "fns": [] - } - }, - { - "name": "guessHandleType node:internal/util:826:25", - "type": "JS", - "kind": "Unopt", - "func": 304, - "tm": 74084, - "source": { - "script": 16, - "start": 22819, - "end": 22892, - "positions": "C0O22841C5O22841C10O22865C17O22883C20O22890", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:net:2301:6", - "type": "JS", - "kind": "Unopt", - "func": 305, - "tm": 74167, - "source": { - "script": 86, - "start": 63595, - "end": 63628, - "positions": "C0O63601C2O63613C7O63622C13O63626", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:net:2300:6", - "type": "JS", - "kind": "Unopt", - "func": 306, - "tm": 74167, - "source": { - "script": 86, - "start": 63560, - "end": 63588, - "positions": "C0O63565C2O63577C4O63576C7O63586", - "inlined": "", - "fns": [] - } - }, - { - "name": "Readable.on node:internal/streams/readable:1103:33", - "type": "JS", - "kind": "Unopt", - "func": 307, - "tm": 74250, - "source": { - "script": 96, - "start": 34992, - "end": 35891, - "positions": "C0O35017C5O35024C10O35034C15O35037C29O35037C35O35078C40O35097C42O35104C47O35286C55O35286C62O35312C65O35279C69O35405C79O35435C84O35435C90O35454C92O35461C97O35494C103O35515C109O35542C111O35587C117O35566C121O35601C122O35615C126O35630C127O35652C131O35667C139O35694C144O35708C149O35667C154O35734C160O35752C163O35752C169O35796C175O35815C178O35823C186O35823C192O35878C194O35889", - "inlined": "", - "fns": [] - } - }, - { - "name": "initSocketHandle node:net:309:26", - "type": "JS", - "kind": "Unopt", - "func": 308, - "tm": 74292, - "source": { - "script": 86, - "start": 7887, - "end": 8465, - "positions": "C0O7903C5O7903C9O7919C10O7934C14O8020C20O8040C27O8048C32O8062C36O8079C43O8096C45O8094C49O8114C51O8119C57O8157C62O8138C66O8136C70O8186C72O8191C74O8190C78O8205C80O8241C82O8246C84O8245C88O8265C90O8306C94O8324C99O8329C105O8362C106O8369C107O8378C109O8383C114O8392C118O8422C123O8430C128O8430C134O8464", - "inlined": "", - "fns": [] - } - }, - { - "name": "undestroy node:internal/streams/destroy:154:19", - "type": "JS", - "kind": "Unopt", - "func": 309, - "tm": 74334, - "source": { - "script": 94, - "start": 2820, - "end": 3492, - "positions": "C0O2842C5O2875C10O2894C14O2907C15O2921C19O2933C20O2942C24O2955C25O2970C29O2983C30O2995C34O3008C35O3018C39O3030C40O3045C44O3058C45O3068C49O3093C57O3089C61O3134C69O3130C73O3161C77O3174C78O3188C82O3200C83O3212C87O3225C88O3234C92O3247C93O3262C97O3275C98O3285C102O3297C103O3312C107O3325C108O3339C112O3352C113O3366C117O3391C125O3387C129O3428C137O3424C141O3467C149O3463C154O3491", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:internal/streams/readable:177:8", - "type": "JS", - "kind": "Unopt", - "func": 310, - "tm": 74375, - "source": { - "script": 96, - "start": 6229, - "end": 6392, - "positions": "C0O6245C4O6266C6O6271C11O6286C15O6303C17O6308C26O6319C31O6316C37O6352C39O6357C48O6369C50O6368C55O6365C60O6391", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:internal/streams/writable:120:8", - "type": "JS", - "kind": "Unopt", - "func": 311, - "tm": 74375, - "source": { - "script": 103, - "start": 3872, - "end": 3958, - "positions": "C0O3888C4O3899C8O3904C17O3915C20O3912C26O3931C30O3936C39O3947C44O3944C49O3957", - "inlined": "", - "fns": [] - } - }, - { - "name": "set node:internal/streams/writable:205:8", - "type": "JS", - "kind": "Unopt", - "func": 312, - "tm": 74417, - "source": { - "script": 103, - "start": 7017, - "end": 7180, - "positions": "C0O7033C4O7054C6O7059C11O7074C15O7091C17O7096C26O7107C31O7104C37O7140C39O7145C48O7157C50O7156C55O7153C60O7179", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:internal/streams/writable:218:8", - "type": "JS", - "kind": "Unopt", - "func": 313, - "tm": 74417, - "source": { - "script": 103, - "start": 7253, - "end": 7350, - "positions": "C0O7258C2O7271C4O7270C10O7281C12O7279C17O7295C24O7309C26O7308C32O7319C34O7317C39O7330C46O7348", - "inlined": "", - "fns": [] - } - }, - { - "name": "getNewAsyncId node:net:184:23", - "type": "JS", - "kind": "Unopt", - "func": 314, - "tm": 74459, - "source": { - "script": 86, - "start": 4950, - "end": 5066, - "positions": "C0O4963C4O4996C14O5029C17O5029C22O5051C27O5051C31O5064", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:internal/bootstrap/node:371:8", - "type": "JS", - "kind": "Unopt", - "func": 315, - "tm": 74500, - "source": { - "script": 12, - "start": 12775, - "end": 12808, - "positions": "C0O12786C4O12802", - "inlined": "", - "fns": [] - } - }, - { - "name": "get /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:19:10", - "type": "JS", - "kind": "Unopt", - "func": 316, - "tm": 74500, - "source": { - "script": 123, - "start": 392, - "end": 404, - "positions": "C0O398C4O404", - "inlined": "", - "fns": [] - } - }, - { - "name": "realpathSync node:fs:2611:22", - "type": "JS", - "kind": "Sparkplug", - "func": 108, - "tm": 74667, - "source": { - "script": 55, - "start": 68813, - "end": 72563, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "deprecate node:internal/util:156:19", - "type": "JS", - "kind": "Sparkplug", - "func": 317, - "tm": 74709, - "source": { - "script": 16, - "start": 4112, - "end": 5092, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "getOwn node:internal/bootstrap/realm:202:16", - "type": "JS", - "kind": "Sparkplug", - "func": 242, - "tm": 74750, - "source": { - "script": 9, - "start": 6377, - "end": 6531, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "syncExports node:internal/bootstrap/realm:365:14", - "type": "JS", - "kind": "Sparkplug", - "func": 241, - "tm": 74750, - "source": { - "script": 9, - "start": 11891, - "end": 12224, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "SafeWeakMap node:internal/per_context/primordials:419:16", - "type": "JS", - "kind": "Sparkplug", - "func": 318, - "tm": 74750, - "source": { - "script": 6, - "start": 12147, - "end": 12164, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "noop node:internal/util/debuglog:46:14", - "type": "JS", - "kind": "Sparkplug", - "func": 88, - "tm": 74792, - "source": { - "script": 22, - "start": 1404, - "end": 1412, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36", - "type": "JS", - "kind": "Sparkplug", - "func": 93, - "tm": 74792, - "source": { - "script": 9, - "start": 9152, - "end": 9220, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": "readPackage node:internal/modules/package_json_reader:140:21", - "type": "JS", - "kind": "Sparkplug", - "func": 99, - "tm": 74792, - "source": { - "script": 65, - "start": 3950, - "end": 4020, - "positions": "", - "inlined": "", - "fns": [] - } - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", - "type": "JS", - "kind": "Unopt", - "func": 319, - "tm": 74917, - "source": { - "script": 131, - "start": 0, - "end": 85, - "positions": "C0O0C4O85", - "inlined": "", - "fns": [] - } - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", - "type": "JS", - "kind": "Unopt", - "func": 320, - "tm": 74959, - "source": { - "script": 131, - "start": 0, - "end": 85, - "positions": "C0O14C4O22C12O35C16O43C21O22C27O49C31O57C39O71C43O79C48O57C55O84", - "inlined": "", - "fns": [] - } - }, - { - "name": "initializeFrozenIntrinsics node:internal/process/pre_execution:714:36", - "type": "JS", - "kind": "Unopt", - "func": 321, - "tm": 75042, - "source": { - "script": 67, - "start": 22147, - "end": 22369, - "positions": "C0O22154C8O22158C14O22203C17O22211C28O22211C34O22323C40O22323C45O22360C49O22368", - "inlined": "", - "fns": [] - } - }, - { - "name": "markBootstrapComplete node:internal/process/pre_execution:735:31", - "type": "JS", - "kind": "Unopt", - "func": 322, - "tm": 75042, - "source": { - "script": 67, - "start": 22751, - "end": 22815, - "positions": "C0O22758C6O22758C11O22788C16O22789C21O22814", - "inlined": "", - "fns": [] - } - }, - { - "name": "executeUserEntryPoint node:internal/modules/run_main:127:31", - "type": "JS", - "kind": "Unopt", - "func": 323, - "tm": 75125, - "source": { - "script": 70, - "start": 4520, - "end": 4888, - "positions": "C7O4536C14O4540C22O4570C25O4570C30O4616C33O4616C38O4652C40O4676C45O4687C50O4676C56O4807C62O4807C67O4796C72O4858C87O4858C93O4887", - "inlined": "", - "fns": [] - } - }, - { - "name": "resolveMainPath node:internal/modules/run_main:15:25", - "type": "JS", - "kind": "Unopt", - "func": 324, - "tm": 75375, - "source": { - "script": 70, - "start": 344, - "end": 1479, - "positions": "C0O375C8O375C13O452C15O464C17O480C22O500C30O504C36O550C37O557C38O564C43O580C48O580C56O765C62O765C67O754C72O827C79O837C82O842C87O842C100O827C106O876C110O893C111O900C112O935C120O935C125O981C127O1037C133O1037C138O1022C146O1101C154O1099C164O1149C166O1165C176O1184C186O1191C191O1258C199O1258C204O1223C209O1329C217O1329C222O1315C227O1363C230O1409C237O1363C242O1437C244O1437C245O1461C247O1477", - "inlined": "", - "fns": [] - } - }, - { - "name": "tryPackage node:internal/modules/cjs/loader:429:20", - "type": "JS", - "kind": "Unopt", - "func": 325, - "tm": 75500, - "source": { - "script": 63, - "start": 12095, - "end": 13355, - "positions": "C0O12153C5O12153C10O12178C15O12188C17O12204C22O12225C25O12230C33O12230C46O12211C51O12275C52O12300C57O12305C62O12305C69O12347C72O12347C91O12380C103O12439C106O12444C114O12444C127O12425C133O12489C138O12517C143O12540C146O12545C154O12545C167O12526C173O12595C175O12683C185O12725C198O12739C204O12683C210O12828C212O12837C216O12865C218O12876C221O12881C229O12881C235O12874C239O12925C241O12941C245O13018C247O13018C248O13065C253O13070C261O13070C268O13114C271O13122C281O13171C294O13188C307O13197C317O13122C322O13339C324O13353", - "inlined": "", - "fns": [] - } - }, - { - "name": "reportModuleNotFoundToWatchMode node:internal/modules/cjs/loader:239:41", - "type": "JS", - "kind": "Unopt", - "func": 326, - "tm": 75584, - "source": { - "script": 63, - "start": 6858, - "end": 7057, - "positions": "C0O6858C9O6885C16O6889C26O6930C32O6942C37O6950C51O6974C54O6992C59O6974C68O6950C74O7056", - "inlined": "", - "fns": [] - } - }, - { - "name": "shouldUseESMLoader node:internal/modules/run_main:52:28", - "type": "JS", - "kind": "Unopt", - "func": 327, - "tm": 75625, - "source": { - "script": 70, - "start": 1667, - "end": 3093, - "positions": "C0O1682C8O1686C15O1732C20O1748C21O1760C22O1936C30O1936C35O2152C43O2152C48O2198C54O2205C59O2224C65O2231C70O2238C71O2250C72O2309C78O2325C84O2325C91O2370C92O2382C93O2387C99O2404C105O2404C112O2449C113O2462C114O2497C120O2497C125O2476C130O2560C135O2670C142O2674C166O2709C167O2721C168O2749C169O2762C170O2823C178O2827C184O3004C191O3011C196O3053C197O3068C198O3081", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/process/execution:169:10", - "type": "JS", - "kind": "Unopt", - "func": 328, - "tm": 75792, - "source": { - "script": 33, - "start": 5799, - "end": 7350, - "positions": "C0O5963C5O5963C8O6011C19O6073C22O6081C36O6081C41O6129C46O6155C52O6183C57O6205C62O6205C69O6231C72O6244C86O6244C96O6452C99O6465C105O6487C109O6504C113O6522C118O6541C120O6539C124O6570C127O6578C137O6591C140O6578C152O6705C153O6718C154O6862C160O6862C165O6879C173O6880C178O6976C183O6980C188O7036C193O7036C197O7064C198O7076C203O7093C210O7093C216O7136C221O7136C225O7171C230O7171C235O7007C239O7308C244O7308C247O7334C248O7346", - "inlined": "", - "fns": [] - } - }, - { - "name": "clearDefaultTriggerAsyncId node:internal/async_hooks:442:36", - "type": "JS", - "kind": "Unopt", - "func": 329, - "tm": 76125, - "source": { - "script": 14, - "start": 15322, - "end": 15376, - "positions": "C0O15329C7O15345C12O15369C17O15375", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:internal/bootstrap/node:100:8", - "type": "JS", - "kind": "Unopt", - "func": 330, - "tm": 76792, - "source": { - "script": 12, - "start": 3833, - "end": 3880, - "positions": "C0O3844C9O3858C11O3857C17O3868C20O3874", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/validators:93:3", - "type": "JS", - "kind": "Unopt", - "func": 331, - "tm": 76834, - "source": { - "script": 15, - "start": 2186, - "end": 2567, - "positions": "C12O2206C25O2236C32O2269C38O2306C54O2312C59O2306C60O2365C65O2370C71O2400C87O2406C92O2400C93O2459C95O2469C102O2484C107O2497C117O2536C130O2549C143O2503C148O2497C150O2566", - "inlined": "", - "fns": [] - } - }, - { - "name": "beforeInspector node:internal/errors:833:18", - "type": "JS", - "kind": "Unopt", - "func": 332, - "tm": 76959, - "source": { - "script": 10, - "start": 24705, - "end": 25081, - "positions": "C0O24719C2O24736C4O24735C11O24803C15O24809C19O24915C21O24935C23O24934C27O24964C31O24927C41O25071C45O25077", - "inlined": "", - "fns": [] - } - }, - { - "name": "prepareStackTrace node:internal/errors:91:27", - "type": "JS", - "kind": "Unopt", - "func": 333, - "tm": 79375, - "source": { - "script": 10, - "start": 2161, - "end": 3649, - "positions": "C0O2303C5O2326C10O2326C17O2354C22O2373C27O2373C33O2389C38O2408C43O2414C48O2434C53O2450C54O2477C55O2482C61O2485C66O2487C74O2508C78O2526C83O2564C86O2526C93O2610C97O2617C101O2624C102O2624C107O2654C109O2659C115O2662C120O2664C128O2689C132O2699C137O2729C140O2699C147O2760C156O2793C163O2760C168O2807C170O2631C175O2591C179O2992C186O3001C188O2999C193O3028C200O3056C203O3028C208O3112C222O3112C228O3172C230O3195C232O3191C237O3208C239O3230C240O3338C242O3353C249O3370C254O3409C266O3424C281O3440C292O3466C297O3480C302O3527C308O3534C313O3547C315O3566C316O3573C328O3606C334O3606C343O3647", - "inlined": "", - "fns": [] - } - }, - { - "name": "maybeOverridePrepareStackTrace node:internal/errors:136:40", - "type": "JS", - "kind": "Unopt", - "func": 334, - "tm": 79459, - "source": { - "script": 10, - "start": 3691, - "end": 4398, - "positions": "C0O3919C7O3924C18O3984C23O3990C28O3990C34O4022C35O4245C40O4273C48O4313C53O4337C58O4337C64O4369C65O4377C69O4396", - "inlined": "", - "fns": [] - } - }, - { - "name": "afterInspector node:internal/errors:847:17", - "type": "JS", - "kind": "Unopt", - "func": 335, - "tm": 79500, - "source": { - "script": 10, - "start": 25099, - "end": 26368, - "positions": "C0O25141C5O25168C7O25650C13O25686C19O25686C24O25707C29O25708C34O25746C41O25764C46O25789C53O25764C61O25836C64O25746C70O25851C71O25858C77O25862C84O25875C92O25879C97O25898C99O26037C102O26037C106O25949C111O25987C116O26005C121O26083C128O26097C132O26113C140O26137C145O26114C158O26195C165O26212C171O26265C174O26281C179O26296C187O26265C196O26187C201O26316C204O26337C206O26358", - "inlined": "", - "fns": [] - } - }, - { - "name": "lazyInternalUtilInspect node:internal/errors:191:33", - "type": "JS", - "kind": "Unopt", - "func": 336, - "tm": 79542, - "source": { - "script": 10, - "start": 5499, - "end": 5595, - "positions": "C0O5506C14O5530C21O5526C27O5566C31O5593", - "inlined": "", - "fns": [] - } - }, - { - "name": "lazyUtilColors node:internal/errors:197:24", - "type": "JS", - "kind": "Unopt", - "func": 337, - "tm": 79584, - "source": { - "script": 10, - "start": 5636, - "end": 5713, - "positions": "C0O5643C14O5658C21O5654C27O5693C31O5711", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/util/colors:1:1", - "type": "JS", - "kind": "Unopt", - "func": 338, - "tm": 79625, - "source": { - "script": 132, - "start": 0, - "end": 1122, - "positions": "C0O0C4O1122", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/util/colors:1:1", - "type": "JS", - "kind": "Unopt", - "func": 339, - "tm": 79667, - "source": { - "script": 132, - "start": 0, - "end": 1122, - "positions": "C0O0C26O19C27O19C29O129C37O244C45O508C55O144C59O1096C62O1103C67O1111C72O1111C77O1121", - "inlined": "", - "fns": [] - } - }, - { - "name": "refresh node:internal/util/colors:25:10", - "type": "JS", - "kind": "Unopt", - "func": 340, - "tm": 79750, - "source": { - "script": 132, - "start": 515, - "end": 1090, - "positions": "C0O524C3O536C8O543C14O576C17O583C22O591C30O614C35O591C41O629C44O636C51O651C59O649C63O688C66O695C73O711C81O709C85O748C88O755C95O771C103O769C107O808C110O815C117O832C125O830C129O869C132O876C139O890C147O888C151O927C154O934C161O949C169O947C173O986C176O993C183O1009C191O1007C195O1043C198O1050C205O1068C210O1089", - "inlined": "", - "fns": [] - } - }, - { - "name": "getStderr node:internal/bootstrap/switches/is_main_thread:170:19", - "type": "JS", - "kind": "Unopt", - "func": 341, - "tm": 79792, - "source": { - "script": 52, - "start": 4444, - "end": 5117, - "positions": "C0O4451C6O4463C10O4477C11O4480C17O4489C24O4487C30O4521C37O4542C40O4549C44O4540C48O4560C53O4583C60O4574C66O4659C73O4675C77O4693C82O4704C88O4717C91O4725C102O4725C108O4772C116O4772C120O5101C124O5115", - "inlined": "", - "fns": [] - } - }, - { - "name": "createWritableStdioStream node:internal/bootstrap/switches/is_main_thread:47:35", - "type": "JS", - "kind": "Unopt", - "func": 342, - "tm": 80167, - "source": { - "script": 52, - "start": 1458, - "end": 3026, - "positions": "C0O1471C2O1541C7O1549C42O1608C48O1608C53O1647C60O1639C66O1670C68O1683C72O1698C74O1761C80O1761C85O1838C95O1818C101O1871C103O1884C107O1898C109O1965C115O1965C120O2197C123O2209C132O2228C137O2236C144O2239C149O2284C155O2284C160O2265C165O2344C180O2378C189O2336C197O2501C209O2520C215O2493C221O2604C223O2617C227O2633C229O2784C235O2784C240O2771C245O2809C250O2841C260O2818C266O2964C268O2974C272O2983C273O2999C277O3010C279O3024", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:tty:1:1", - "type": "JS", - "kind": "Unopt", - "func": 343, - "tm": 80250, - "source": { - "script": 133, - "start": 0, - "end": 5058, - "positions": "C0O0C4O5058", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:tty:1:1", - "type": "JS", - "kind": "Unopt", - "func": 344, - "tm": 80459, - "source": { - "script": 133, - "start": 0, - "end": 5058, - "positions": "C0O0C53O1159C59O1168C65O1187C70O1239C76O1239C80O1239C82O1278C85O1278C90O1263C96O1268C102O1322C108O1322C112O1322C114O1398C117O1405C122O1358C128O1374C134O1454C140O1454C145O1422C150O1439C155O1524C156O1524C158O2114C161O2146C169O2161C174O2168C179O2114C184O2180C190O2217C195O2180C200O2227C203O2238C212O2259C216O3455C219O3488C227O3503C232O3510C237O3455C242O3522C248O3560C253O3522C258O3570C261O3582C267O3598C271O3607C274O3619C281O3643C285O3661C288O3673C295O3693C299O3707C302O3719C311O3742C315O4203C318O4215C327O4234C331O4378C334O4390C343O4411C347O4561C350O4573C359O4593C363O4736C366O4748C375O4774C379O4913C382O4925C391O4949C395O5004C402O5023C408O5031C414O5043C420O5019C425O5057", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/tty:1:1", - "type": "JS", - "kind": "Unopt", - "func": 345, - "tm": 80584, - "source": { - "script": 134, - "start": 0, - "end": 6485, - "positions": "C0O0C4O6485", - "inlined": "", - "fns": [] - } - }, - { - "name": " node:internal/tty:1:1", - "type": "JS", - "kind": "Unopt", - "func": 346, - "tm": 80834, - "source": { - "script": 134, - "start": 0, - "end": 6485, - "positions": "C0O0C69O1186C75O1208C81O1231C87O1255C93O1329C99O1329C104O1309C110O1366C111O1366C113O1395C115O1395C117O1416C119O1416C121O1438C123O1438C125O1460C127O1460C129O1877C136O1890C142O1913C148O1937C154O1960C160O1983C166O2005C172O2026C178O2050C184O2074C190O2096C196O2119C202O2140C208O2163C214O2182C220O2287C226O2379C232O1877C234O2421C336O2421C338O2542C339O2542C341O6433C348O6454C354O6471C360O6448C365O6484", - "inlined": "", - "fns": [] - } - }, - { - "name": "WriteStream node:tty:84:21", - "type": "JS", - "kind": "Unopt", - "func": 347, - "tm": 80917, - "source": { - "script": 133, - "start": 2501, - "end": 3453, - "positions": "C0O2510C2O2521C7O2550C12O2557C17O2577C18O2580C20O2587C26O2592C32O2605C37O2614C44O2620C49O2614C50O2659C52O2677C65O2677C71O2705C77O2731C84O2737C89O2731C90O2774C95O2778C100O2785C112O2840C116O2785C122O3264C127O3272C134O3272C139O3310C149O3310C155O3343C160O3351C165O3351C171O3377C173O3393C174O3415C177O3406C181O3424C183O3443C186O3434C191O3452", - "inlined": "", - "fns": [] - } - }, - { - "name": "addCleanup node:internal/bootstrap/switches/is_main_thread:142:20", - "type": "JS", - "kind": "Unopt", - "func": 348, - "tm": 82209, - "source": { - "script": 52, - "start": 3658, - "end": 3730, - "positions": "C0O3667C5O3671C10O3699C15O3699C20O3729", - "inlined": "", - "fns": [] - } - }, - { - "name": "shouldColorize node:internal/util/colors:17:17", - "type": "JS", - "kind": "Unopt", - "func": 349, - "tm": 82250, - "source": { - "script": 132, - "start": 258, - "end": 504, - "positions": "C0O273C3O285C8O289C14O324C17O331C21O348C26O349C33O365C36O369C37O380C44O393C53O426C61O472C66O472C73O488C79O500", - "inlined": "", - "fns": [] - } - }, - { - "name": "getColorDepth node:internal/tty:106:23", - "type": "JS", - "kind": "Unopt", - "func": 350, - "tm": 82334 - }, - { - "name": "get node:internal/util/inspect:370:6", - "type": "JS", - "kind": "Unopt", - "func": 351, - "tm": 82459, - "source": { - "script": 21, - "start": 11149, - "end": 11191, - "positions": "C0O11158C4O11187", - "inlined": "", - "fns": [] - } - }, - { - "name": "inspect node:internal/util/inspect:309:17", - "type": "JS", - "kind": "Unopt", - "func": 352, - "tm": 85334, - "source": { - "script": 21, - "start": 9025, - "end": 11035, - "positions": "C0O9025C2O9076C9O9165C15O9197C18O9219C28O9242C31O9264C41O9283C44O9305C54O9332C57O9354C67O9384C70O9406C80O9437C83O9459C93O9496C96O9518C106O9552C109O9574C119O9600C122O9622C132O9643C135O9665C145O9686C148O9708C158O9739C161O9761C172O9800C179O9807C184O9849C191O9856C196O9869C198O9882C203O9911C205O9932C208O9921C212O9965C219O9972C226O9988C231O10017C233O10039C236O10028C240O10096C246O10135C248O10150C254O10169C258O10203C263O10203C268O10240C270O10255C274O10245C279O10290C281O10297C285O10491C292O10536C295O10506C304O10581C309O10608C311O10623C314O10617C320O10653C326O10761C328O10777C332O10265C337O10227C341O10823C347O10831C349O10843C353O10873C359O10919C362O10917C366O10939C372O10987C375O10985C379O10999C390O11006C395O11033", - "inlined": "", - "fns": [] - } - }, - { - "name": "formatValue node:internal/util/inspect:765:21", - "type": "JS", - "kind": "Unopt", - "func": 353, - "tm": 85459, - "source": { - "script": 21, - "start": 23100, - "end": 25837, - "positions": "C0O23188C14O23265C17O23265C23O23300C26O23327C37O23307C42O23348C43O23355C47O23392C58O23392C64O23416C65O23500C68O23628C73O23657C80O23628C86O23671C88O23702C93O23729C98O23762C109O23762C115O23800C116O23819C122O23838C134O23845C139O23883C140O23894C145O24049C151O24090C153O24096C155O24095C159O24122C165O24255C170O24361C176O24382C181O24394C188O24404C193O24550C202O24578C209O24584C213O24637C216O24643C221O24681C223O24670C228O24708C236O24792C254O24708C260O24962C262O24970C267O24993C273O25034C285O25041C290O25077C291O25096C304O25145C310O25176C315O25145C328O25103C333O25195C334O25381C339O25386C344O25386C351O25421C354O25436C360O25468C362O25487C365O25483C370O25481C374O25508C379O25517C384O25517C392O25567C397O25576C402O25576C408O25594C410O25641C415O25650C419O25655C423O25672C428O25681C433O25681C439O25729C449O25751C463O25729C469O25772C470O25780C485O25787C490O25835", - "inlined": "", - "fns": [] - } - }, - { - "name": "formatRaw node:internal/util/inspect:843:19", - "type": "JS", - "kind": "Unopt", - "func": 354, - "tm": 85709 - }, - { - "name": "getConstructorName node:internal/util/inspect:587:28", - "type": "JS", - "kind": "Unopt", - "func": 355, - "tm": 85959, - "source": { - "script": 21, - "start": 17502, - "end": 18744, - "positions": "C0O17547C2O17573C7O17591C13O17594C16O17594C22O17646C30O17646C36O17702C38O17760C46O17803C51O17809C58O17814C66O17861C71O17832C78O17877C84O17930C91O17951C94O17966C99O17981C104O17987C109O17966C116O18005C127O18049C138O18005C143O18109C148O18134C153O18140C158O18116C162O18146C163O18158C168O18164C174O18195C178O18233C183O17580C187O18264C191O18295C192O18307C193O18327C198O18327C203O18386C207O18380C212O18399C218O18421C227O18457C228O18485C233O18539C246O18485C252O18560C254O18592C267O18641C273O18667C279O18687C283O18610C298O18701C299O18709C311O18727C321O18742", - "inlined": "", - "fns": [] - } - }, - { - "name": "isInstanceof node:internal/util/inspect:579:22", - "type": "JS", - "kind": "Unopt", - "func": 356, - "tm": 86042, - "source": { - "script": 21, - "start": 17376, - "end": 17473, - "positions": "C3O17406C5O17420C8O17437C11O17454C12O17467", - "inlined": "", - "fns": [] - } - }, - { - "name": "getKeys node:internal/util/inspect:708:17", - "type": "JS", - "kind": "Unopt", - "func": 357, - "tm": 86125, - "source": { - "script": 21, - "start": 21206, - "end": 22181, - "positions": "C0O21206C9O21234C11O21258C21O21258C26O21296C30O21318C40O21325C45O21375C51O21382C56O21395C63O21395C73O21755C83O21762C91O21760C101O21807C112O21814C118O21814C127O21840C134O21845C143O21882C151O21882C156O21807C160O21921C172O21928C179O21984C185O21991C190O22021C195O22085C206O22115C209O22115C215O22085C220O22167C222O22179", - "inlined": "", - "fns": [] - } - }, - { - "name": "isError node:internal/util:98:17", - "type": "JS", - "kind": "Unopt", - "func": 358, - "tm": 86167, - "source": { - "script": 16, - "start": 2305, - "end": 2539, - "positions": "C0O2491C5O2498C13O2531C15O2520C18O2537", - "inlined": "", - "fns": [] - } - }, - { - "name": "formatError node:internal/util/inspect:1367:21", - "type": "JS", - "kind": "Unopt", - "func": 359, - "tm": 86250, - "source": { - "script": 21, - "start": 44775, - "end": 47150, - "positions": "C0O44831C9O44846C12O44857C18O44846C27O44888C30O44888C35O44912C50O44912C55O44964C60O44976C65O44998C71O45005C78O45015C85O45015C92O45061C101O45061C106O45152C111O45173C117O45156C123O45196C129O45203C136O45213C143O45213C150O45260C159O45260C164O45303C179O45311C185O45436C193O45447C196O45481C202O45447C212O45500C214O45508C219O45531C225O45539C236O45631C251O45631C257O45681C259O45696C264O45710C269O45722C282O45762C296O45762C302O45833C309O45872C314O45833C320O45896C332O45896C338O45950C344O46042C347O46042C351O46066C353O46110C373O46102C404O46102C407O46140C415O46160C419O46140C425O46193C429O46214C433O46228C441O46239C446O46228C453O46257C457O46278C467O46278C486O46335C495O46364C499O46371C505O46409C509O46473C522O46473C528O46523C530O46535C535O46561C545O46585C550O46636C563O46646C569O46713C574O46752C576O46764C583O46093C657O46807C663O46824C671O46824C687O46869C692O46961C698O46976C703O47009C712O47040C718O47009C724O47061C739O47113C748O47069C754O47135C756O47148", - "inlined": "", - "fns": [] - } - }, - { - "name": "getStackString node:internal/util/inspect:1239:24", - "type": "JS", - "kind": "Unopt", - "func": 360, - "tm": 86292, - "source": { - "script": 21, - "start": 40538, - "end": 40625, - "positions": "C0O40563C8O40571C11O40584C16O40571C24O40593C27O40593C31O40623", - "inlined": "", - "fns": [] - } - }, - { - "name": "removeDuplicateErrorKeys node:internal/util/inspect:1303:34", - "type": "JS", - "kind": "Unopt", - "func": 361, - "tm": 86334, - "source": { - "script": 21, - "start": 42760, - "end": 43150, - "positions": "C0O42797C6O42816C12O42823C17O42855C39O42847C67O42847C70O42907C75O42907C81O43020C83O43030C90O43040C95O43074C99O43040C106O43093C120O43093C125O42836C190O43149", - "inlined": "", - "fns": [] - } - }, - { - "name": "improveStack node:internal/util/inspect:1270:22", - "type": "JS", - "kind": "Unopt", - "func": 362, - "tm": 86375, - "source": { - "script": 21, - "start": 41541, - "end": 42725, - "positions": "C0O41729C5O41740C11O41775C17O41775C26O41823C29O41823C36O41878C43O41885C50O41901C56O41907C63O41923C69O41929C74O41962C77O41975C81O42023C92O42023C101O42105C110O42105C116O42166C120O42192C128O42225C133O42239C140O42296C157O42317C168O42296C174O42368C176O42377C181O42397C186O42401C193O42450C194O42458C199O42477C211O42499C219O42535C225O42555C228O42555C241O42624C253O42646C266O42654C269O42654C280O42710C282O42723", - "inlined": "", - "fns": [] - } - }, - { - "name": "getPrefix node:internal/util/inspect:693:19", - "type": "JS", - "kind": "Unopt", - "func": 363, - "tm": 86417, - "source": { - "script": 21, - "start": 20784, - "end": 21153, - "positions": "C20O20828C24O20860C26O20868C33O20887C38O20904C43O20915C50O20926C63O20952C73O20960C74O20971C79O20982C86O20993C96O21018C97O21026C99O21034C106O21056C111O21071C117O21095C130O21104C140O21112C141O21119C147O21143C157O21151", - "inlined": "", - "fns": [] - } - }, - { - "name": "getStackFrames node:internal/util/inspect:1243:24", - "type": "JS", - "kind": "Unopt", - "func": 364, - "tm": 86459, - "source": { - "script": 21, - "start": 40650, - "end": 41518, - "positions": "C0O40687C8O40687C14O40729C19O40751C30O40895C37O40916C40O40916C46O40957C49O40957C54O41008C62O41008C68O41060C70O41080C75O41116C82O41137C87O41186C91O41137C100O41116C106O41229C109O41229C115O41213C120O41218C125O41280C126O41288C131O41319C133O41323C137O41348C142O41359C153O41422C160O41436C164O41454C173O41454C186O41422C191O41502C193O41516", - "inlined": "", - "fns": [] - } - }, - { - "name": "safeGetCWD node:internal/util/inspect:1357:20", - "type": "JS", - "kind": "Unopt", - "func": 365, - "tm": 86500, - "source": { - "script": 21, - "start": 44622, - "end": 44753, - "positions": "C0O44633C5O44663C8O44690C13O44690C21O44680C22O44713C23O44720C24O44727C26O44751", - "inlined": "", - "fns": [] - } - }, - { - "name": "exists node:internal/bootstrap/realm:280:16", - "type": "JS", - "kind": "Unopt", - "func": 366, - "tm": 86584, - "source": { - "script": 9, - "start": 8981, - "end": 9029, - "positions": "C0O8992C5O9013C10O9017C15O9017C20O9025", - "inlined": "", - "fns": [] - } - }, - { - "name": "stylizeWithColor node:internal/util/inspect:560:26", - "type": "JS", - "kind": "Unopt", - "func": 367, - "tm": 86584, - "source": { - "script": 21, - "start": 16938, - "end": 17179, - "positions": "C0O16973C3O16981C10O16987C14O17002C16O17047C19O17055C26O17061C30O17074C32O17105C36O17127C52O17134C65O17152C78O17159C79O17166C81O17177", - "inlined": "", - "fns": [] - } - }, - { - "name": "get node:internal/util/inspect:436:8", - "type": "JS", - "kind": "Unopt", - "func": 368, - "tm": 86625, - "source": { - "script": 21, - "start": 13153, - "end": 13190, - "positions": "C0O13164C2O13175C5O13184", - "inlined": "", - "fns": [] - } - }, - { - "name": "^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$", - "timestamp": 86667, - "type": "CODE", - "kind": "RegExp" - }, - { - "name": "getEmptyFormatArray node:internal/util/inspect:575:29", - "type": "JS", - "kind": "Unopt", - "func": 369, - "tm": 86709, - "source": { - "script": 21, - "start": 17334, - "end": 17353, - "positions": "C0O17341C2O17351", - "inlined": "", - "fns": [] - } - }, - { - "name": "formatProperty node:internal/util/inspect:1936:24", - "type": "JS", - "kind": "Unopt", - "func": 370, - "tm": 86792 - }, - { - "name": "isUndetectableObject node:internal/util/inspect:176:30", - "type": "JS", - "kind": "Unopt", - "func": 371, - "tm": 86875, - "source": { - "script": 21, - "start": 3640, - "end": 3690, - "positions": "C0O3672C9O3677C10O3690", - "inlined": "", - "fns": [] - } - }, - { - "name": "formatPrimitive node:internal/util/inspect:1620:25", - "type": "JS", - "kind": "Unopt", - "func": 372, - "tm": 86917, - "source": { - "script": 21, - "start": 53716, - "end": 55097, - "positions": "C0O53716C9O53737C15O53788C18O53806C23O53819C27O53813C32O53868C37O53881C41O53875C45O53904C54O53947C62O53912C69O53971C74O53988C87O54025C103O54061C113O54261C122O54270C124O54268C129O54302C134O54315C139O54333C143O54327C146O54348C149O54309C154O54361C165O54396C172O54425C181O54425C192O54396C205O54548C211O54579C215O54594C219O54548C229O54368C237O54610C240O54620C241O54631C249O54641C257O54638C265O54669C268O54679C269O54686C275O54721C283O54756C291O54728C296O54774C297O54777C303O54812C311O54847C319O54819C324O54865C325O54868C331O54904C336O54917C341O54911C346O54937C347O54940C353O54978C362O54985C367O55014C368O55043C375O55053C378O55053C386O55050C391O55095", - "inlined": "", - "fns": [] - } - }, - { - "name": "strEscape node:internal/util/inspect:495:19", - "type": "JS", - "kind": "Unopt", - "func": 373, - "tm": 86959, - "source": { - "script": 21, - "start": 14775, - "end": 16911, - "positions": "C0O14802C5O14850C10O14898C13O15157C21O15161C28O15292C36O15297C43O15340C48O15369C56O15374C65O15427C71O15427C78O15471C81O15499C83O15515C88O15531C93O15582C98O15729C107O15736C114O15746C117O15746C124O15797C127O15804C132O15832C133O15843C140O15850C145O15863C159O15869C166O15933C169O15940C174O15968C175O15989C178O16006C180O16024C182O16035C186O16029C191O16068C196O16068C202O16107C204O16117C211O16150C218O16174C225O16197C234O16212C239O16228C241O16237C246O16254C248O16264C253O16268C265O16300C267O16313C279O16313C288O16350C293O16354C307O16379C309O16388C315O16404C321O16414C332O16433C337O16452C343O16462C350O16477C354O16487C358O16481C363O16519C370O16552C374O16519C380O16566C386O16576C397O16595C402O16618C407O16633C409O16667C411O16680C423O16680C438O16720C444O16720C460O16764C462O16773C466O16044C471O16011C479O16808C483O16800C488O16822C490O16832C493O16832C505O16871C508O16878C513O16909", - "inlined": "", - "fns": [] - } - }, - { - "name": "addQuotes node:internal/util/inspect:478:19", - "type": "JS", - "kind": "Unopt", - "func": 374, - "tm": 87042, - "source": { - "script": 21, - "start": 14328, - "end": 14468, - "positions": "C0O14346C2O14357C7O14371C12O14382C22O14389C23O14396C25O14407C30O14421C35O14433C45O14441C46O14448C51O14459C61O14466", - "inlined": "", - "fns": [] - } - }, - { - "name": "^[a-zA-Z_][a-zA-Z_0-9]*$", - "timestamp": 87167, - "type": "CODE", - "kind": "RegExp" - }, - { - "name": "reduceToSingleString node:internal/util/inspect:2032:30", - "type": "JS", - "kind": "Unopt", - "func": 375, - "tm": 87250, - "source": { - "script": 21, - "start": 67959, - "end": 70831, - "positions": "C0O68035C10O68074C18O68102C25O68110C30O68281C35O68396C37O68415C39O68411C46O68443C51O68458C63O68467C70O69106C77O69119C81O69140C85O69134C90O69180C94O69169C99O69423C104O69436C108O69430C113O69481C117O69485C121O69451C125O69499C129O69492C132O69506C136O69520C151O69524C158O69603C166O69603C172O69633C180O69638C187O69697C193O69717C207O69738C223O69745C233O69786C240O69760C243O69792C244O69902C249O69907C255O69938C260O69907C270O69961C276O69981C290O70002C300O70008C313O70035C321O70052C332O70035C341O70071C348O70091C355O70024C358O70097C359O70200C373O70204C380O70252C381O70268C388O70274C395O70285C416O70300C422O70300C440O70336C443O70322C446O70340C447O70367C455O70398C460O70367C466O70605C468O70610C474O70626C478O70630C485O70637C496O70658C503O70669C521O70685C532O70751C533O70767C540O70773C547O70778C555O70797C566O70778C584O70823C591O70829", - "inlined": "", - "fns": [] - } - }, - { - "name": "isBelowBreakLength node:internal/util/inspect:2008:28", - "type": "JS", - "kind": "Unopt", - "func": 376, - "tm": 87292, - "source": { - "script": 21, - "start": 66997, - "end": 67928, - "positions": "C0O67450C7O67457C11O67493C15O67484C19O67506C23O67500C28O67523C29O67536C30O67552C32O67566C36O67557C41O67593C47O67609C49O67624C54O67643C58O67624C63O67647C76O67675C78O67696C82O67700C93O67740C97O67734C102O67761C103O67774C104O67575C109O67539C113O67867C115O67879C122O67890C128O67890C134O67926", - "inlined": "", - "fns": [] - } - }, - { - "name": "join node:internal/util:466:14", - "type": "JS", - "kind": "Unopt", - "func": 377, - "tm": 87334, - "source": { - "script": 16, - "start": 13078, - "end": 13387, - "positions": "C0O13112C3O13129C9O13136C14O13174C18O13181C22O13203C24O13208C26O13208C31O13290C33O13303C43O13314C45O13321C52O13222C57O13190C61O13342C63O13355C73O13374C75O13385", - "inlined": "", - "fns": [] - } - } -], - "functions": [ - { - "name": " node:internal/main/run_main_module:1:1", - "codes": [ - 4271 - ] - }, - { - "name": " node:internal/main/run_main_module:1:1", - "codes": [ - 4272 - ] - }, - { - "name": "prepareMainThreadExecution node:internal/process/pre_execution:54:36", - "codes": [ - 4273 - ] - }, - { - "name": "prepareExecution node:internal/process/pre_execution:70:26", - "codes": [ - 4274 - ] - }, - { - "name": "refreshRuntimeOptions node:internal/process/pre_execution:177:31", - "codes": [ - 4275 - ] - }, - { - "name": "refreshOptions node:internal/options:39:24", - "codes": [ - 4276 - ] - }, - { - "name": "reconnectZeroFillToggle node:internal/buffer:1074:33", - "codes": [ - 4277 - ] - }, - { - "name": "patchProcessObject node:internal/process/pre_execution:188:28", - "codes": [ - 4278 - ] - }, - { - "name": "set node:internal/bootstrap/node:116:8", - "codes": [ - 4279 - ] - }, - { - "name": "resolve node:path:1095:10", - "codes": [ - 4280, - 4335 - ] - }, - { - "name": " node:path:1086:10", - "codes": [ - 4281 - ] - }, - { - "name": "wrappedCwd node:internal/bootstrap/switches/does_own_process_state:136:20", - "codes": [ - 4282 - ] - }, - { - "name": "normalizeString node:path:66:25", - "codes": [ - 4283, - 4285 - ] - }, - { - "name": "isPosixPathSeparator node:path:56:30", - "codes": [ - 4284, - 4289 - ] - }, - { - "name": "requireBuiltin node:internal/bootstrap/realm:414:24", - "codes": [ - 4286 - ] - }, - { - "name": "compileForInternalLoader node:internal/bootstrap/realm:377:27", - "codes": [ - 4287 - ] - }, - { - "name": "internalBinding node:internal/bootstrap/realm:185:45", - "codes": [ - 4288 - ] - }, - { - "name": "initializeGlobalConsole node:internal/console/constructor:690:33", - "codes": [ - 4290 - ] - }, - { - "name": "value node:internal/console/constructor:205:20", - "codes": [ - 4291 - ] - }, - { - "name": "value node:internal/console/constructor:235:20", - "codes": [ - 4292 - ] - }, - { - "name": "createWriteErrorHandler node:internal/console/constructor:357:33", - "codes": [ - 4293 - ] - }, - { - "name": "addReadOnlyProcessAlias node:internal/process/pre_execution:248:33", - "codes": [ - 4294 - ] - }, - { - "name": "getOptionValue node:internal/options:44:24", - "codes": [ - 4295, - 4337 - ] - }, - { - "name": "getCLIOptionsFromBinding node:internal/options:18:34", - "codes": [ - 4296, - 4340 - ] - }, - { - "name": "setupTraceCategoryState node:internal/process/pre_execution:460:33", - "codes": [ - 4297 - ] - }, - { - "name": "toggleTraceCategoryState node:internal/process/per_thread:410:34", - "codes": [ - 4298 - ] - }, - { - "name": "setupInspectorHooks node:internal/process/pre_execution:466:29", - "codes": [ - 4299 - ] - }, - { - "name": "setupWarningHandler node:internal/process/pre_execution:261:29", - "codes": [ - 4300 - ] - }, - { - "name": "setupUndici node:internal/process/pre_execution:283:21", - "codes": [ - 4301 - ] - }, - { - "name": "getEmbedderOptions node:internal/options:32:28", - "codes": [ - 4302 - ] - }, - { - "name": "lazyInterface node:internal/process/pre_execution:298:25", - "codes": [ - 4303 - ] - }, - { - "name": "setupWebCrypto node:internal/process/pre_execution:341:24", - "codes": [ - 4304 - ] - }, - { - "name": "setupCustomEvent node:internal/process/pre_execution:389:26", - "codes": [ - 4305 - ] - }, - { - "name": "setupCodeCoverage node:internal/process/pre_execution:374:27", - "codes": [ - 4306 - ] - }, - { - "name": "setupDebugEnv node:internal/process/pre_execution:420:23", - "codes": [ - 4307 - ] - }, - { - "name": "initializeDebugEnv node:internal/util/debuglog:21:28", - "codes": [ - 4308 - ] - }, - { - "name": "initializeReport node:internal/process/pre_execution:408:26", - "codes": [ - 4309 - ] - }, - { - "name": "initializePermission node:internal/process/pre_execution:573:30", - "codes": [ - 4310 - ] - }, - { - "name": " node:internal/process/pre_execution:626:53", - "codes": [ - 4311 - ] - }, - { - "name": "initializeSourceMapsHandlers node:internal/process/pre_execution:707:38", - "codes": [ - 4312 - ] - }, - { - "name": "setSourceMapsEnabled node:internal/source_map/source_map_cache:52:30", - "codes": [ - 4313 - ] - }, - { - "name": "validateBoolean node:internal/validators:216:25", - "codes": [ - 4314 - ] - }, - { - "name": "initializeDeprecations node:internal/process/pre_execution:484:32", - "codes": [ - 4315 - ] - }, - { - "name": "initializeDns node:internal/dns/utils:202:23", - "codes": [ - 4316 - ] - }, - { - "name": "setupSymbolDisposePolyfill node:internal/process/pre_execution:138:36", - "codes": [ - 4317 - ] - }, - { - "name": "assert node:internal/assert:11:16", - "codes": [ - 4318 - ] - }, - { - "name": "readPolicyFromDisk node:internal/process/pre_execution:635:28", - "codes": [ - 4319 - ] - }, - { - "name": "setupStacktracePrinterOnSigint node:internal/process/pre_execution:398:40", - "codes": [ - 4320 - ] - }, - { - "name": "initializeReportSignalHandlers node:internal/process/pre_execution:428:40", - "codes": [ - 4321 - ] - }, - { - "name": "initializeHeapSnapshotSignalHandlers node:internal/process/pre_execution:435:46", - "codes": [ - 4322 - ] - }, - { - "name": "setupChildProcessIpcChannel node:internal/process/pre_execution:545:37", - "codes": [ - 4323 - ] - }, - { - "name": "initializeClusterIPC node:internal/process/pre_execution:564:30", - "codes": [ - 4324 - ] - }, - { - "name": "runDeserializeCallbacks node:internal/v8/startup_snapshot:39:33", - "codes": [ - 4325 - ] - }, - { - "name": "setupUserModules node:internal/process/pre_execution:163:26", - "codes": [ - 4326 - ] - }, - { - "name": "initializeCJSLoader node:internal/process/pre_execution:685:29", - "codes": [ - 4327 - ] - }, - { - "name": "initializeCJS node:internal/modules/cjs/loader:383:23", - "codes": [ - 4328 - ] - }, - { - "name": "getCanBeRequiredByUsersWithoutSchemeList node:internal/bootstrap/realm:313:50", - "codes": [ - 4329 - ] - }, - { - "name": "desc.value node:internal/per_context/primordials:387:32", - "codes": [ - 4330 - ] - }, - { - "name": "SafeIterator node:internal/per_context/primordials:332:16", - "codes": [ - 4331 - ] - }, - { - "name": "next node:internal/per_context/primordials:335:9", - "codes": [ - 4332, - 4341 - ] - }, - { - "name": "initializeCjsConditions node:internal/modules/helpers:65:33", - "codes": [ - 4333 - ] - }, - { - "name": "Module._initPaths node:internal/modules/cjs/loader:1530:29", - "codes": [ - 4334 - ] - }, - { - "name": "SafeMap node:internal/per_context/primordials:413:16", - "codes": [ - 4336 - ] - }, - { - "name": "exposeLazyInterfaces node:internal/util:683:30", - "codes": [ - 4338 - ] - }, - { - "name": "defineLazyProperties node:internal/util:600:30", - "codes": [ - 4339 - ] - }, - { - "name": "SafeSet node:internal/per_context/primordials:426:16", - "codes": [ - 4342 - ] - }, - { - "name": "initializeESMLoader node:internal/process/pre_execution:690:29", - "codes": [ - 4343 - ] - }, - { - "name": "initializeESM node:internal/modules/esm/utils:192:23", - "codes": [ - 4344 - ] - }, - { - "name": "initializeDefaultConditions node:internal/modules/esm/utils:60:37", - "codes": [ - 4345 - ] - }, - { - "name": "get hasLoadedAnyUserCJSModule node:internal/modules/cjs/loader:72:32", - "codes": [ - 4346 - ] - }, - { - "name": "loadPreloadModules node:internal/process/pre_execution:722:28", - "codes": [ - 4347 - ] - }, - { - "name": "Module._preloadModules node:internal/modules/cjs/loader:1564:34", - "codes": [ - 4348 - ] - }, - { - "name": "Module node:internal/modules/cjs/loader:252:16", - "codes": [ - 4349 - ] - }, - { - "name": "dirname node:path:1278:10", - "codes": [ - 4350, - 4504 - ] - }, - { - "name": "setOwnProperty node:internal/util:723:24", - "codes": [ - 4351 - ] - }, - { - "name": "updateChildren node:internal/modules/cjs/loader:217:24", - "codes": [ - 4352 - ] - }, - { - "name": " node:internal/util:794:18", - "codes": [ - 4353 - ] - }, - { - "name": " node:internal/modules/cjs/loader:117:3", - "codes": [ - 4354 - ] - }, - { - "name": "Module._nodeModulePaths node:internal/modules/cjs/loader:793:37", - "codes": [ - 4355, - 4500 - ] - }, - { - "name": "internalRequire node:internal/modules/cjs/loader:167:25", - "codes": [ - 4356 - ] - }, - { - "name": "Module._load node:internal/modules/cjs/loader:950:24", - "codes": [ - 4357 - ] - }, - { - "name": "logger node:internal/util/debuglog:100:18", - "codes": [ - 4358 - ] - }, - { - "name": " node:internal/per_context/primordials:338:21", - "codes": [ - 4359 - ] - }, - { - "name": "debug node:internal/util/debuglog:81:15", - "codes": [ - 4360 - ] - }, - { - "name": "init node:internal/util/debuglog:77:16", - "codes": [ - 4361 - ] - }, - { - "name": "testEnabled node:internal/util/debuglog:31:19", - "codes": [ - 4362 - ] - }, - { - "name": "debuglogImpl node:internal/util/debuglog:54:22", - "codes": [ - 4363 - ] - }, - { - "name": " node:internal/modules/cjs/loader:357:66", - "codes": [ - 4364 - ] - }, - { - "name": "noop node:internal/util/debuglog:46:14", - "codes": [ - 4365, - 4607 - ] - }, - { - "name": "reportModuleToWatchMode node:internal/modules/cjs/loader:228:33", - "codes": [ - 4366 - ] - }, - { - "name": " node:internal/modules/cjs/loader:119:45", - "codes": [ - 4367 - ] - }, - { - "name": "Module._resolveFilename node:internal/modules/cjs/loader:1058:35", - "codes": [ - 4368 - ] - }, - { - "name": "normalizeRequirableId node:internal/bootstrap/realm:292:31", - "codes": [ - 4369 - ] - }, - { - "name": "canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36", - "codes": [ - 4370, - 4608 - ] - }, - { - "name": "Module._resolveLookupPaths node:internal/modules/cjs/loader:839:38", - "codes": [ - 4371 - ] - }, - { - "name": "trySelfParentPath node:internal/modules/cjs/loader:520:27", - "codes": [ - 4372 - ] - }, - { - "name": "trySelf node:internal/modules/cjs/loader:539:17", - "codes": [ - 4373 - ] - }, - { - "name": "readPackageScope node:internal/modules/package_json_reader:149:26", - "codes": [ - 4374 - ] - }, - { - "name": "isEnabled node:internal/process/permission:16:12", - "codes": [ - 4375 - ] - }, - { - "name": "readPackage node:internal/modules/package_json_reader:140:21", - "codes": [ - 4376, - 4609 - ] - }, - { - "name": "read node:internal/modules/package_json_reader:48:14", - "codes": [ - 4377 - ] - }, - { - "name": "toNamespacedPath node:path:1269:19", - "codes": [ - 4378, - 4501 - ] - }, - { - "name": "Module._findPath node:internal/modules/cjs/loader:610:28", - "codes": [ - 4379 - ] - }, - { - "name": "isAbsolute node:path:1159:13", - "codes": [ - 4380 - ] - }, - { - "name": "stat node:internal/modules/cjs/loader:185:14", - "codes": [ - 4381 - ] - }, - { - "name": "tryExtensions node:internal/modules/cjs/loader:487:23", - "codes": [ - 4382 - ] - }, - { - "name": "tryFile node:internal/modules/cjs/loader:472:17", - "codes": [ - 4383 - ] - }, - { - "name": "toRealPath node:internal/modules/helpers:54:20", - "codes": [ - 4384 - ] - }, - { - "name": "realpathSync node:fs:2611:22", - "codes": [ - 4385, - 4602 - ] - }, - { - "name": "getOptions node:internal/fs/utils:323:20", - "codes": [ - 4386 - ] - }, - { - "name": "assertEncoding node:internal/fs/utils:158:24", - "codes": [ - 4387 - ] - }, - { - "name": "toPathIfFileURL node:internal/url:1479:25", - "codes": [ - 4388 - ] - }, - { - "name": "isURL node:internal/url:755:15", - "codes": [ - 4389 - ] - }, - { - "name": " node:internal/fs/utils:697:38", - "codes": [ - 4390 - ] - }, - { - "name": " node:internal/fs/utils:366:35", - "codes": [ - 4391 - ] - }, - { - "name": "isUint8Array node:internal/util/types:13:22", - "codes": [ - 4392 - ] - }, - { - "name": "splitRoot node:fs:2567:33", - "codes": [ - 4393 - ] - }, - { - "name": "nextPart node:fs:2600:31", - "codes": [ - 4394, - 4502 - ] - }, - { - "name": "handleErrorFromBinding node:internal/fs/utils:349:32", - "codes": [ - 4395 - ] - }, - { - "name": "isFileType node:fs:206:20", - "codes": [ - 4396, - 4503 - ] - }, - { - "name": "encodeRealpathResult node:fs:2576:30", - "codes": [ - 4397 - ] - }, - { - "name": "Module.load node:internal/modules/cjs/loader:1194:33", - "codes": [ - 4398 - ] - }, - { - "name": "findLongestRegisteredExtension node:internal/modules/cjs/loader:502:40", - "codes": [ - 4399 - ] - }, - { - "name": "basename node:path:1309:11", - "codes": [ - 4400 - ] - }, - { - "name": "Module._extensions..js node:internal/modules/cjs/loader:1389:37", - "codes": [ - 4401 - ] - }, - { - "name": "readFileSync node:fs:446:22", - "codes": [ - 4402 - ] - }, - { - "name": "isEncoding node:buffer:569:40", - "codes": [ - 4403 - ] - }, - { - "name": "normalizeEncoding node:internal/util:212:27", - "codes": [ - 4404 - ] - }, - { - "name": "isInt32 node:internal/validators:43:17", - "codes": [ - 4405 - ] - }, - { - "name": " node:internal/fs/utils:727:42", - "codes": [ - 4406 - ] - }, - { - "name": "possiblyTransformPath node:internal/fs/utils:715:31", - "codes": [ - 4407 - ] - }, - { - "name": "stringToFlags node:internal/fs/utils:584:23", - "codes": [ - 4408 - ] - }, - { - "name": "Module._compile node:internal/modules/cjs/loader:1330:37", - "codes": [ - 4409 - ] - }, - { - "name": "wrapSafe node:internal/modules/cjs/loader:1257:18", - "codes": [ - 4410 - ] - }, - { - "name": "internalCompileFunction node:internal/vm:73:33", - "codes": [ - 4411 - ] - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", - "codes": [ - 4412 - ] - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1", - "codes": [ - 4413 - ] - }, - { - "name": "registerImportModuleDynamically node:internal/vm:63:41", - "codes": [ - 4414 - ] - }, - { - "name": "importModuleDynamicallyWrap node:internal/vm/module:429:37", - "codes": [ - 4415 - ] - }, - { - "name": "registerModule node:internal/modules/esm/utils:135:24", - "codes": [ - 4416 - ] - }, - { - "name": "makeRequireFunction node:internal/modules/helpers:127:29", - "codes": [ - 4417 - ] - }, - { - "name": "lazyModule node:internal/modules/helpers:110:20", - "codes": [ - 4418 - ] - }, - { - "name": "require node:internal/modules/helpers:174:31", - "codes": [ - 4419 - ] - }, - { - "name": "Module.require node:internal/modules/cjs/loader:1227:36", - "codes": [ - 4420 - ] - }, - { - "name": "loadBuiltinModule node:internal/modules/helpers:93:27", - "codes": [ - 4421 - ] - }, - { - "name": "canBeRequiredByUsers node:internal/bootstrap/realm:284:30", - "codes": [ - 4422 - ] - }, - { - "name": " node:internal/modules/helpers:37:66", - "codes": [ - 4423 - ] - }, - { - "name": "compileForPublicLoader node:internal/bootstrap/realm:322:25", - "codes": [ - 4424 - ] - }, - { - "name": " node:cluster:1:1", - "codes": [ - 4425 - ] - }, - { - "name": " node:cluster:1:1", - "codes": [ - 4426 - ] - }, - { - "name": " node:internal/cluster/primary:1:1", - "codes": [ - 4427 - ] - }, - { - "name": " node:internal/cluster/primary:1:1", - "codes": [ - 4428 - ] - }, - { - "name": " node:child_process:1:1", - "codes": [ - 4429 - ] - }, - { - "name": " node:child_process:1:1", - "codes": [ - 4430 - ] - }, - { - "name": " node:internal/child_process:1:1", - "codes": [ - 4431 - ] - }, - { - "name": " node:internal/child_process:1:1", - "codes": [ - 4432 - ] - }, - { - "name": " node:internal/child_process:536:1", - "codes": [ - 4433 - ] - }, - { - "name": " node:net:1:1", - "codes": [ - 4434 - ] - }, - { - "name": " node:net:1:1", - "codes": [ - 4435 - ] - }, - { - "name": " node:stream:1:1", - "codes": [ - 4436 - ] - }, - { - "name": " node:stream:1:1", - "codes": [ - 4437 - ] - }, - { - "name": " node:internal/streams/operators:1:1", - "codes": [ - 4438 - ] - }, - { - "name": " node:internal/streams/operators:1:1", - "codes": [ - 4439 - ] - }, - { - "name": " node:internal/abort_controller:1:1", - "codes": [ - 4440 - ] - }, - { - "name": " node:internal/abort_controller:1:1", - "codes": [ - 4441 - ] - }, - { - "name": " node:internal/abort_controller:378:1", - "codes": [ - 4442 - ] - }, - { - "name": "SafeFinalizationRegistry node:internal/per_context/primordials:440:16", - "codes": [ - 4443 - ] - }, - { - "name": "defineEventHandler node:internal/event_target:1104:28", - "codes": [ - 4444 - ] - }, - { - "name": " node:internal/streams/end-of-stream:1:1", - "codes": [ - 4445 - ] - }, - { - "name": " node:internal/streams/end-of-stream:1:1", - "codes": [ - 4446 - ] - }, - { - "name": " node:internal/streams/utils:1:1", - "codes": [ - 4447 - ] - }, - { - "name": " node:internal/streams/utils:1:1", - "codes": [ - 4448 - ] - }, - { - "name": " node:internal/streams/compose:1:1", - "codes": [ - 4449 - ] - }, - { - "name": " node:internal/streams/compose:1:1", - "codes": [ - 4450 - ] - }, - { - "name": " node:internal/streams/pipeline:1:1", - "codes": [ - 4451 - ] - }, - { - "name": " node:internal/streams/pipeline:1:1", - "codes": [ - 4452 - ] - }, - { - "name": " node:internal/streams/destroy:1:1", - "codes": [ - 4453 - ] - }, - { - "name": " node:internal/streams/destroy:1:1", - "codes": [ - 4454 - ] - }, - { - "name": " node:internal/streams/duplex:1:1", - "codes": [ - 4455 - ] - }, - { - "name": " node:internal/streams/duplex:1:1", - "codes": [ - 4456 - ] - }, - { - "name": " node:internal/streams/readable:1:1", - "codes": [ - 4457 - ] - }, - { - "name": " node:internal/streams/readable:1:1", - "codes": [ - 4458 - ] - }, - { - "name": " node:internal/streams/legacy:1:1", - "codes": [ - 4459 - ] - }, - { - "name": " node:internal/streams/legacy:1:1", - "codes": [ - 4460 - ] - }, - { - "name": " node:internal/streams/add-abort-signal:1:1", - "codes": [ - 4461 - ] - }, - { - "name": " node:internal/streams/add-abort-signal:1:1", - "codes": [ - 4462 - ] - }, - { - "name": " node:internal/streams/buffer_list:1:1", - "codes": [ - 4463 - ] - }, - { - "name": " node:internal/streams/buffer_list:1:1", - "codes": [ - 4464 - ] - }, - { - "name": " node:internal/streams/state:1:1", - "codes": [ - 4465 - ] - }, - { - "name": " node:internal/streams/state:1:1", - "codes": [ - 4466 - ] - }, - { - "name": " node:string_decoder:1:1", - "codes": [ - 4467 - ] - }, - { - "name": " node:string_decoder:1:1", - "codes": [ - 4468 - ] - }, - { - "name": " node:internal/streams/from:1:1", - "codes": [ - 4469 - ] - }, - { - "name": " node:internal/streams/from:1:1", - "codes": [ - 4470 - ] - }, - { - "name": "makeBitMapDescriptor node:internal/streams/readable:120:30", - "codes": [ - 4471, - 4506 - ] - }, - { - "name": " node:internal/streams/writable:1:1", - "codes": [ - 4472 - ] - }, - { - "name": " node:internal/streams/writable:1:1", - "codes": [ - 4473 - ] - }, - { - "name": "makeBitMapDescriptor node:internal/streams/writable:116:30", - "codes": [ - 4474, - 4507 - ] - }, - { - "name": " node:stream/promises:1:1", - "codes": [ - 4475 - ] - }, - { - "name": " node:stream/promises:1:1", - "codes": [ - 4476 - ] - }, - { - "name": " node:internal/streams/transform:1:1", - "codes": [ - 4477 - ] - }, - { - "name": " node:internal/streams/transform:1:1", - "codes": [ - 4478 - ] - }, - { - "name": " node:internal/streams/passthrough:1:1", - "codes": [ - 4479 - ] - }, - { - "name": " node:internal/streams/passthrough:1:1", - "codes": [ - 4480 - ] - }, - { - "name": " node:internal/stream_base_commons:1:1", - "codes": [ - 4481 - ] - }, - { - "name": " node:internal/stream_base_commons:1:1", - "codes": [ - 4482 - ] - }, - { - "name": " node:diagnostics_channel:1:1", - "codes": [ - 4483 - ] - }, - { - "name": " node:diagnostics_channel:1:1", - "codes": [ - 4484 - ] - }, - { - "name": " node:diagnostics_channel:35:1", - "codes": [ - 4485 - ] - }, - { - "name": "WeakRefMap node:diagnostics_channel:35:1", - "codes": [ - 4486 - ] - }, - { - "name": "channel node:diagnostics_channel:213:17", - "codes": [ - 4487 - ] - }, - { - "name": "get node:diagnostics_channel:45:6", - "codes": [ - 4488 - ] - }, - { - "name": "Channel node:diagnostics_channel:168:14", - "codes": [ - 4489 - ] - }, - { - "name": "set node:diagnostics_channel:40:6", - "codes": [ - 4490 - ] - }, - { - "name": "WeakReference node:internal/util:835:14", - "codes": [ - 4491 - ] - }, - { - "name": "SafeWeakRef node:internal/per_context/primordials:447:16", - "codes": [ - 4492 - ] - }, - { - "name": " node:internal/perf/observe:1:1", - "codes": [ - 4493 - ] - }, - { - "name": " node:internal/perf/observe:1:1", - "codes": [ - 4494 - ] - }, - { - "name": " node:internal/perf/observe:243:1", - "codes": [ - 4495 - ] - }, - { - "name": " node:internal/perf/performance_entry:1:1", - "codes": [ - 4496 - ] - }, - { - "name": " node:internal/perf/performance_entry:1:1", - "codes": [ - 4497 - ] - }, - { - "name": "protoGetter node:net:866:21", - "codes": [ - 4498, - 4499 - ] - }, - { - "name": "validateString node:internal/validators:160:24", - "codes": [ - 4505 - ] - }, - { - "name": "getDeprecationWarningEmitter node:internal/util:111:38", - "codes": [ - 4508 - ] - }, - { - "name": " node:dgram:1:1", - "codes": [ - 4509 - ] - }, - { - "name": " node:dgram:1:1", - "codes": [ - 4510 - ] - }, - { - "name": " node:internal/dgram:1:1", - "codes": [ - 4511 - ] - }, - { - "name": " node:internal/dgram:1:1", - "codes": [ - 4512 - ] - }, - { - "name": " node:internal/socket_list:1:1", - "codes": [ - 4513 - ] - }, - { - "name": " node:internal/socket_list:1:1", - "codes": [ - 4514 - ] - }, - { - "name": "customPromiseExecFunction node:child_process:239:35", - "codes": [ - 4515 - ] - }, - { - "name": " node:internal/cluster/round_robin_handle:1:1", - "codes": [ - 4516 - ] - }, - { - "name": " node:internal/cluster/round_robin_handle:1:1", - "codes": [ - 4517 - ] - }, - { - "name": " node:internal/cluster/utils:1:1", - "codes": [ - 4518 - ] - }, - { - "name": " node:internal/cluster/utils:1:1", - "codes": [ - 4519 - ] - }, - { - "name": " node:internal/cluster/shared_handle:1:1", - "codes": [ - 4520 - ] - }, - { - "name": " node:internal/cluster/shared_handle:1:1", - "codes": [ - 4521 - ] - }, - { - "name": " node:internal/cluster/worker:1:1", - "codes": [ - 4522 - ] - }, - { - "name": " node:internal/cluster/worker:1:1", - "codes": [ - 4523 - ] - }, - { - "name": "getESMFacade node:internal/bootstrap/realm:340:15", - "codes": [ - 4524 - ] - }, - { - "name": " node:internal/bootstrap/realm:351:15", - "codes": [ - 4525 - ] - }, - { - "name": "syncExports node:internal/bootstrap/realm:365:14", - "codes": [ - 4526, - 4605 - ] - }, - { - "name": "getOwn node:internal/bootstrap/realm:202:16", - "codes": [ - 4527, - 4604 - ] - }, - { - "name": " node:internal/modules/cjs/loader:122:3", - "codes": [ - 4528 - ] - }, - { - "name": " node:internal/process/esm_loader:1:1", - "codes": [ - 4529 - ] - }, - { - "name": " node:internal/process/esm_loader:1:1", - "codes": [ - 4530 - ] - }, - { - "name": " node:internal/modules/esm/loader:1:1", - "codes": [ - 4531 - ] - }, - { - "name": " node:internal/modules/esm/loader:1:1", - "codes": [ - 4532 - ] - }, - { - "name": " node:internal/modules/esm/loader:456:1", - "codes": [ - 4533 - ] - }, - { - "name": " node:internal/modules/esm/loader:83:1", - "codes": [ - 4534 - ] - }, - { - "name": "get esmLoader node:internal/process/esm_loader:17:16", - "codes": [ - 4535 - ] - }, - { - "name": "createModuleLoader node:internal/modules/esm/loader:530:28", - "codes": [ - 4536 - ] - }, - { - "name": "isLoaderWorker node:internal/modules/esm/utils:205:24", - "codes": [ - 4537 - ] - }, - { - "name": "ModuleLoader node:internal/modules/esm/loader:132:14", - "codes": [ - 4538 - ] - }, - { - "name": "getDefaultConditions node:internal/modules/esm/utils:41:30", - "codes": [ - 4539 - ] - }, - { - "name": "newResolveCache node:internal/modules/esm/loader:35:25", - "codes": [ - 4540 - ] - }, - { - "name": " node:internal/modules/esm/module_map:1:1", - "codes": [ - 4541 - ] - }, - { - "name": " node:internal/modules/esm/module_map:1:1", - "codes": [ - 4542 - ] - }, - { - "name": " node:internal/modules/esm/assert:1:1", - "codes": [ - 4543 - ] - }, - { - "name": " node:internal/modules/esm/assert:1:1", - "codes": [ - 4544 - ] - }, - { - "name": " node:internal/modules/esm/assert:44:3", - "codes": [ - 4545 - ] - }, - { - "name": "ResolveCache node:internal/modules/esm/module_map:26:14", - "codes": [ - 4546 - ] - }, - { - "name": "newLoadCache node:internal/modules/esm/loader:44:22", - "codes": [ - 4547 - ] - }, - { - "name": "LoadCache node:internal/modules/esm/module_map:90:14", - "codes": [ - 4548 - ] - }, - { - "name": "getTranslators node:internal/modules/esm/loader:53:24", - "codes": [ - 4549 - ] - }, - { - "name": " node:internal/modules/esm/translators:1:1", - "codes": [ - 4550 - ] - }, - { - "name": " node:internal/modules/esm/translators:1:1", - "codes": [ - 4551 - ] - }, - { - "name": "setCustomizations node:internal/modules/esm/loader:187:20", - "codes": [ - 4552 - ] - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", - "codes": [ - 4553 - ] - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1", - "codes": [ - 4554 - ] - }, - { - "name": "get BlockList node:net:2373:16", - "codes": [ - 4555 - ] - }, - { - "name": " node:internal/blocklist:1:1", - "codes": [ - 4556 - ] - }, - { - "name": " node:internal/blocklist:1:1", - "codes": [ - 4557 - ] - }, - { - "name": " node:internal/socketaddress:1:1", - "codes": [ - 4558 - ] - }, - { - "name": " node:internal/socketaddress:1:1", - "codes": [ - 4559 - ] - }, - { - "name": "get SocketAddress node:net:2377:20", - "codes": [ - 4560 - ] - }, - { - "name": " node:worker_threads:1:1", - "codes": [ - 4561 - ] - }, - { - "name": " node:worker_threads:1:1", - "codes": [ - 4562 - ] - }, - { - "name": " node:internal/worker:1:1", - "codes": [ - 4563 - ] - }, - { - "name": " node:internal/worker:1:1", - "codes": [ - 4564 - ] - }, - { - "name": " node:internal/perf/event_loop_utilization:1:1", - "codes": [ - 4565 - ] - }, - { - "name": " node:internal/perf/event_loop_utilization:1:1", - "codes": [ - 4566 - ] - }, - { - "name": " node:internal/worker/io:1:1", - "codes": [ - 4567 - ] - }, - { - "name": " node:internal/worker/io:1:1", - "codes": [ - 4568 - ] - }, - { - "name": " node:internal/error_serdes:1:1", - "codes": [ - 4569 - ] - }, - { - "name": " node:internal/error_serdes:1:1", - "codes": [ - 4570 - ] - }, - { - "name": "Socket node:net:353:16", - "codes": [ - 4571 - ] - }, - { - "name": "Duplex node:internal/streams/duplex:54:16", - "codes": [ - 4572 - ] - }, - { - "name": "Readable node:internal/streams/readable:314:18", - "codes": [ - 4573 - ] - }, - { - "name": "Stream node:internal/streams/legacy:10:16", - "codes": [ - 4574 - ] - }, - { - "name": "ReadableState node:internal/streams/readable:253:23", - "codes": [ - 4575 - ] - }, - { - "name": "getHighWaterMark node:internal/streams/state:32:26", - "codes": [ - 4576 - ] - }, - { - "name": "highWaterMarkFrom node:internal/streams/state:14:27", - "codes": [ - 4577 - ] - }, - { - "name": "get node:internal/streams/readable:123:8", - "codes": [ - 4578 - ] - }, - { - "name": "getDefaultHighWaterMark node:internal/streams/state:19:33", - "codes": [ - 4579 - ] - }, - { - "name": "BufferList node:internal/streams/buffer_list:14:14", - "codes": [ - 4580 - ] - }, - { - "name": "construct node:internal/streams/destroy:219:19", - "codes": [ - 4581 - ] - }, - { - "name": "Writable node:internal/streams/writable:375:18", - "codes": [ - 4582 - ] - }, - { - "name": "WritableState node:internal/streams/writable:292:23", - "codes": [ - 4583 - ] - }, - { - "name": "get node:internal/streams/writable:119:8", - "codes": [ - 4584 - ] - }, - { - "name": "resetBuffer node:internal/streams/writable:357:21", - "codes": [ - 4585 - ] - }, - { - "name": "set node:internal/streams/readable:124:8", - "codes": [ - 4586 - ] - }, - { - "name": "createHandle node:net:165:22", - "codes": [ - 4587 - ] - }, - { - "name": " node:internal/validators:114:3", - "codes": [ - 4588 - ] - }, - { - "name": "guessHandleType node:internal/util:826:25", - "codes": [ - 4589 - ] - }, - { - "name": "set node:net:2301:6", - "codes": [ - 4590 - ] - }, - { - "name": "get node:net:2300:6", - "codes": [ - 4591 - ] - }, - { - "name": "Readable.on node:internal/streams/readable:1103:33", - "codes": [ - 4592 - ] - }, - { - "name": "initSocketHandle node:net:309:26", - "codes": [ - 4593 - ] - }, - { - "name": "undestroy node:internal/streams/destroy:154:19", - "codes": [ - 4594 - ] - }, - { - "name": "set node:internal/streams/readable:177:8", - "codes": [ - 4595 - ] - }, - { - "name": "set node:internal/streams/writable:120:8", - "codes": [ - 4596 - ] - }, - { - "name": "set node:internal/streams/writable:205:8", - "codes": [ - 4597 - ] - }, - { - "name": "get node:internal/streams/writable:218:8", - "codes": [ - 4598 - ] - }, - { - "name": "getNewAsyncId node:net:184:23", - "codes": [ - 4599 - ] - }, - { - "name": "get node:internal/bootstrap/node:371:8", - "codes": [ - 4600 - ] - }, - { - "name": "get /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:19:10", - "codes": [ - 4601 - ] - }, - { - "name": "deprecate node:internal/util:156:19", - "codes": [ - 4603 - ] - }, - { - "name": "SafeWeakMap node:internal/per_context/primordials:419:16", - "codes": [ - 4606 - ] - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", - "codes": [ - 4610 - ] - }, - { - "name": " /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1", - "codes": [ - 4611 - ] - }, - { - "name": "initializeFrozenIntrinsics node:internal/process/pre_execution:714:36", - "codes": [ - 4612 - ] - }, - { - "name": "markBootstrapComplete node:internal/process/pre_execution:735:31", - "codes": [ - 4613 - ] - }, - { - "name": "executeUserEntryPoint node:internal/modules/run_main:127:31", - "codes": [ - 4614 - ] - }, - { - "name": "resolveMainPath node:internal/modules/run_main:15:25", - "codes": [ - 4615 - ] - }, - { - "name": "tryPackage node:internal/modules/cjs/loader:429:20", - "codes": [ - 4616 - ] - }, - { - "name": "reportModuleNotFoundToWatchMode node:internal/modules/cjs/loader:239:41", - "codes": [ - 4617 - ] - }, - { - "name": "shouldUseESMLoader node:internal/modules/run_main:52:28", - "codes": [ - 4618 - ] - }, - { - "name": " node:internal/process/execution:169:10", - "codes": [ - 4619 - ] - }, - { - "name": "clearDefaultTriggerAsyncId node:internal/async_hooks:442:36", - "codes": [ - 4620 - ] - }, - { - "name": "get node:internal/bootstrap/node:100:8", - "codes": [ - 4621 - ] - }, - { - "name": " node:internal/validators:93:3", - "codes": [ - 4622 - ] - }, - { - "name": "beforeInspector node:internal/errors:833:18", - "codes": [ - 4623 - ] - }, - { - "name": "prepareStackTrace node:internal/errors:91:27", - "codes": [ - 4624 - ] - }, - { - "name": "maybeOverridePrepareStackTrace node:internal/errors:136:40", - "codes": [ - 4625 - ] - }, - { - "name": "afterInspector node:internal/errors:847:17", - "codes": [ - 4626 - ] - }, - { - "name": "lazyInternalUtilInspect node:internal/errors:191:33", - "codes": [ - 4627 - ] - }, - { - "name": "lazyUtilColors node:internal/errors:197:24", - "codes": [ - 4628 - ] - }, - { - "name": " node:internal/util/colors:1:1", - "codes": [ - 4629 - ] - }, - { - "name": " node:internal/util/colors:1:1", - "codes": [ - 4630 - ] - }, - { - "name": "refresh node:internal/util/colors:25:10", - "codes": [ - 4631 - ] - }, - { - "name": "getStderr node:internal/bootstrap/switches/is_main_thread:170:19", - "codes": [ - 4632 - ] - }, - { - "name": "createWritableStdioStream node:internal/bootstrap/switches/is_main_thread:47:35", - "codes": [ - 4633 - ] - }, - { - "name": " node:tty:1:1", - "codes": [ - 4634 - ] - }, - { - "name": " node:tty:1:1", - "codes": [ - 4635 - ] - }, - { - "name": " node:internal/tty:1:1", - "codes": [ - 4636 - ] - }, - { - "name": " node:internal/tty:1:1", - "codes": [ - 4637 - ] - }, - { - "name": "WriteStream node:tty:84:21", - "codes": [ - 4638 - ] - }, - { - "name": "addCleanup node:internal/bootstrap/switches/is_main_thread:142:20", - "codes": [ - 4639 - ] - }, - { - "name": "shouldColorize node:internal/util/colors:17:17", - "codes": [ - 4640 - ] - }, - { - "name": "getColorDepth node:internal/tty:106:23", - "codes": [ - 4641 - ] - }, - { - "name": "get node:internal/util/inspect:370:6", - "codes": [ - 4642 - ] - }, - { - "name": "inspect node:internal/util/inspect:309:17", - "codes": [ - 4643 - ] - }, - { - "name": "formatValue node:internal/util/inspect:765:21", - "codes": [ - 4644 - ] - }, - { - "name": "formatRaw node:internal/util/inspect:843:19", - "codes": [ - 4645 - ] - }, - { - "name": "getConstructorName node:internal/util/inspect:587:28", - "codes": [ - 4646 - ] - }, - { - "name": "isInstanceof node:internal/util/inspect:579:22", - "codes": [ - 4647 - ] - }, - { - "name": "getKeys node:internal/util/inspect:708:17", - "codes": [ - 4648 - ] - }, - { - "name": "isError node:internal/util:98:17", - "codes": [ - 4649 - ] - }, - { - "name": "formatError node:internal/util/inspect:1367:21", - "codes": [ - 4650 - ] - }, - { - "name": "getStackString node:internal/util/inspect:1239:24", - "codes": [ - 4651 - ] - }, - { - "name": "removeDuplicateErrorKeys node:internal/util/inspect:1303:34", - "codes": [ - 4652 - ] - }, - { - "name": "improveStack node:internal/util/inspect:1270:22", - "codes": [ - 4653 - ] - }, - { - "name": "getPrefix node:internal/util/inspect:693:19", - "codes": [ - 4654 - ] - }, - { - "name": "getStackFrames node:internal/util/inspect:1243:24", - "codes": [ - 4655 - ] - }, - { - "name": "safeGetCWD node:internal/util/inspect:1357:20", - "codes": [ - 4656 - ] - }, - { - "name": "exists node:internal/bootstrap/realm:280:16", - "codes": [ - 4657 - ] - }, - { - "name": "stylizeWithColor node:internal/util/inspect:560:26", - "codes": [ - 4658 - ] - }, - { - "name": "get node:internal/util/inspect:436:8", - "codes": [ - 4659 - ] - }, - { - "name": "getEmptyFormatArray node:internal/util/inspect:575:29", - "codes": [ - 4661 - ] - }, - { - "name": "formatProperty node:internal/util/inspect:1936:24", - "codes": [ - 4662 - ] - }, - { - "name": "isUndetectableObject node:internal/util/inspect:176:30", - "codes": [ - 4663 - ] - }, - { - "name": "formatPrimitive node:internal/util/inspect:1620:25", - "codes": [ - 4664 - ] - }, - { - "name": "strEscape node:internal/util/inspect:495:19", - "codes": [ - 4665 - ] - }, - { - "name": "addQuotes node:internal/util/inspect:478:19", - "codes": [ - 4666 - ] - }, - { - "name": "reduceToSingleString node:internal/util/inspect:2032:30", - "codes": [ - 4668 - ] - }, - { - "name": "isBelowBreakLength node:internal/util/inspect:2008:28", - "codes": [ - 4669 - ] - }, - { - "name": "join node:internal/util:466:14", - "codes": [ - 4670 - ] - } -], - "ticks": [ - { - "tm": 1250, - "vm": 6, - "s": [ - -1, - 6802760048 - ] -}, - { - "tm": 2459, - "vm": 6, - "s": [ - -1, - 6801022380 - ] -}, - { - "tm": 8584, - "vm": 6, - "s": [ - -1, - 6802776260 - ] -}, - { - "tm": 8584, - "vm": 6, - "s": [ - -1, - 6801726088 - ] -}, - { - "tm": 8584, - "vm": 6, - "s": [ - -1, - 6802772084 - ] -}, - { - "tm": 8584, - "vm": 6, - "s": [ - -1, - 6802776260 - ] -}, - { - "tm": 11167, - "vm": 6, - "s": [ - -1, - 6802776260 - ] -}, - { - "tm": 11167, - "vm": 6, - "s": [ - -1, - 6802776260 - ] -}, - { - "tm": 11417, - "vm": 6, - "s": [ - -1, - 6802776260 - ] -}, - { - "tm": 12750, - "vm": 6, - "s": [ - -1, - 6802776260 - ] -}, - { - "tm": 13917, - "vm": 5, - "s": [ - -1, - 4313227908 - ] -}, - { - "tm": 15167, - "vm": 5, - "s": [ - -1, - 4311747284 - ] -}, - { - "tm": 16584, - "vm": 3, - "s": [ - -1, - 6802229808, - -1, - 0, - 4272, - 38 - ] -}, - { - "tm": 17875, - "vm": 3, - "s": [ - -1, - 6802762708, - -1, - 0, - 4274, - 26, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 20375, - "vm": 3, - "s": [ - -1, - 4305033580, - -1, - 0, - 4278, - 213, - 4274, - 32, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 20375, - "vm": 3, - "s": [ - -1, - 6801563056, - -1, - 0, - 4278, - 213, - 4274, - 32, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 21584, - "vm": 0, - "s": [ - 0, - 13083792, - -1, - 0, - 4283, - 433, - 4280, - 151, - 4278, - 213, - 4274, - 32, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 22709, - "vm": 3, - "s": [ - -1, - 6802776260, - -1, - 0, - 4294, - 21, - 4278, - 282, - 4274, - 32, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 23959, - "vm": 2, - "s": [ - -1, - 6801003636, - -1, - 0, - 4274, - 94, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 25625, - "vm": 3, - "s": [ - -1, - 4307702276, - -1, - 0, - 4274, - 125, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 27917, - "vm": 3, - "s": [ - -1, - 6803004388, - -1, - 0, - 4327, - 16, - 4326, - 13, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 27917, - "vm": 3, - "s": [ - -1, - 6802229904, - -1, - 0, - 4327, - 16, - 4326, - 13, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 29125, - "vm": 3, - "s": [ - -1, - 6802031352, - -1, - 0, - 4328, - 36, - 4327, - 16, - 4326, - 13, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 30334, - "vm": 3, - "s": [ - -1, - 4312121032, - -1, - 0, - 4343, - 16, - 4326, - 19, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 31917, - "vm": 3, - "s": [ - -1, - 6802229784, - -1, - 0, - 4368, - 625, - 4357, - 222, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 35750, - "vm": 3, - "s": [ - -1, - 6803002892, - -1, - 0, - 4384, - 35, - 4383, - 57, - 4382, - 23, - 4379, - 764, - 4368, - 725, - 4357, - 222, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 35792, - "vm": 3, - "s": [ - -1, - 4305033788, - -1, - 0, - 4384, - 35, - 4383, - 57, - 4382, - 23, - 4379, - 764, - 4368, - 725, - 4357, - 222, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 35792, - "vm": 3, - "s": [ - -1, - 6802229844, - -1, - 0, - 4384, - 35, - 4383, - 57, - 4382, - 23, - 4379, - 764, - 4368, - 725, - 4357, - 222, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 36792, - "vm": 3, - "s": [ - -1, - 6801674552, - -1, - 0, - 4385, - 6, - 4384, - 35, - 4383, - 57, - 4382, - 23, - 4379, - 764, - 4368, - 725, - 4357, - 222, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 38417, - "vm": 3, - "s": [ - -1, - 6803004504, - -1, - 0, - 4385, - 18, - 4384, - 35, - 4383, - 57, - 4382, - 23, - 4379, - 764, - 4368, - 725, - 4357, - 222, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 39209, - "vm": 3, - "s": [ - -1, - 4312121048, - -1, - 0, - 4387, - 14, - 4386, - 104, - 4402, - 10, - 4401, - 60, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 40709, - "vm": 3, - "s": [ - -1, - 6801674704, - -1, - 0, - 4387, - 14, - 4386, - 104, - 4402, - 10, - 4401, - 60, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 42042, - "vm": 3, - "s": [ - -1, - 6802762708, - -1, - 0, - 4414, - 37, - 4411, - 110, - 4410, - 196, - 4409, - 69, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 43000, - "vm": 2, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 44292, - "vm": 5, - "s": [ - -1, - 4305411568, - -1, - 0, - 4288, - 324, - 4430, - 521, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 45834, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 48959, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 48959, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 49417, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 50667, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4439, - 166, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 51917, - "vm": 3, - "s": [ - -1, - 6802229844, - -1, - 0, - 4441, - 857, - 4287, - 784, - 4286, - 660, - 4439, - 166, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 53167, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4439, - 288, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 54584, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4452, - 224, - 4287, - 784, - 4286, - 660, - 4450, - 50, - 4287, - 784, - 4286, - 660, - 4439, - 288, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 56834, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4456, - 65, - 4287, - 784, - 4286, - 660, - 4452, - 224, - 4287, - 784, - 4286, - 660, - 4450, - 50, - 4287, - 784, - 4286, - 660, - 4439, - 288, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 56834, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4456, - 65, - 4287, - 784, - 4286, - 660, - 4452, - 224, - 4287, - 784, - 4286, - 660, - 4450, - 50, - 4287, - 784, - 4286, - 660, - 4439, - 288, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 58167, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4458, - 718, - 4287, - 784, - 4286, - 660, - 4456, - 65, - 4287, - 784, - 4286, - 660, - 4452, - 224, - 4287, - 784, - 4286, - 660, - 4450, - 50, - 4287, - 784, - 4286, - 660, - 4439, - 288, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 60209, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4456, - 77, - 4287, - 784, - 4286, - 660, - 4452, - 224, - 4287, - 784, - 4286, - 660, - 4450, - 50, - 4287, - 784, - 4286, - 660, - 4439, - 288, - 4287, - 784, - 4286, - 660, - 4437, - 61, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 60917, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4437, - 842, - 4287, - 784, - 4286, - 660, - 4435, - 677, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 62209, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4435, - 1432, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 63334, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4435, - 1479, - 4287, - 784, - 4286, - 660, - 4432, - 502, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 65417, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4432, - 514, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 65625, - "vm": 6, - "s": [ - -1, - 4305411568, - -1, - 0, - 4288, - 324, - 4512, - 86, - 4287, - 784, - 4286, - 660, - 4510, - 359, - 4287, - 784, - 4286, - 660, - 4432, - 514, - 4287, - 784, - 4286, - 660, - 4430, - 695, - 4287, - 784, - 4286, - 660, - 4428, - 226, - 4287, - 784, - 4286, - 660, - 4426, - 37, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4413, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 66917, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4528, - 6, - 4353, - 13, - 4398, - 160, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 68125, - "vm": 2, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4540, - 6, - 4534, - 47, - 4538, - 17, - 4536, - 187, - 4535, - 15, - 4528, - 11, - 4353, - 13, - 4398, - 160, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 69625, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4549, - 6, - 4534, - 72, - 4538, - 17, - 4536, - 187, - 4535, - 15, - 4528, - 11, - 4353, - 13, - 4398, - 160, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 70667, - "vm": 0, - "s": [ - 0, - 2333696, - 0, - 2468680, - 4527, - 26, - 4526, - 67, - 4525, - 10, - -1, - 4305359032, - 4524, - 159, - 4424, - 127, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4554, - 3, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 71917, - "vm": 2, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4564, - 543, - 4287, - 784, - 4286, - 660, - 4562, - 3, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4554, - 16, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 73209, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4564, - 627, - 4287, - 784, - 4286, - 660, - 4562, - 3, - 4287, - 784, - 4424, - 60, - 4421, - 58, - 4357, - 333, - 4420, - 76, - 4419, - 8, - 4554, - 16, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 74542, - "vm": 0, - "s": [ - 0, - 1556772, - 4593, - 14, - 4571, - 800, - 4554, - 65, - 4409, - 423, - 4401, - 486, - 4398, - 144, - 4357, - 469, - 4356, - 76, - 4348, - 139, - 4347, - 47, - 4326, - 58, - 4274, - 303, - 4273, - 40, - 4272, - 38 - ] -}, - { - "tm": 75750, - "vm": 0, - "s": [ - 0, - 356288, - -1, - 0, - 4368, - 860, - 4357, - 222, - 4614, - 87, - 4272, - 113 - ] -}, - { - "tm": 79375, - "vm": 3, - "s": [ - -1, - 4307702276 - ] -}, - { - "tm": 79375, - "vm": 3, - "s": [ - -1, - 4310254740 - ] -}, - { - "tm": 79500, - "vm": 2, - "s": [ - -1, - 4312526344 - ] -}, - { - "tm": 80834, - "vm": 3, - "s": [ - -1, - 4305491284, - -1, - 0, - 4287, - 580, - 4286, - 660, - 4635, - 140, - 4287, - 784, - 4286, - 660, - 4633, - 48, - 4632, - 17, - 4631, - 3, - 4630, - 72, - 4287, - 784, - 4286, - 660, - 4628, - 14, - 4626, - 128 - ] -}, - { - "tm": 82000, - "vm": 6, - "s": [ - -1, - 4306504152, - -1, - 0, - 4638, - 65, - 4633, - 60, - 4632, - 17, - 4631, - 3, - 4630, - 72, - 4287, - 784, - 4286, - 660, - 4628, - 14, - 4626, - 128 - ] -}, - { - "tm": 85334, - "vm": 3, - "s": [ - -1, - 4305033668, - -1, - 0, - 4626, - 174 - ] -}, - { - "tm": 85334, - "vm": 3, - "s": [ - -1, - 6803002892, - -1, - 0, - 4626, - 174 - ] -}, - { - "tm": 85917, - "vm": 3, - "s": [ - -1, - 6802385252, - -1, - 0, - 4644, - 485, - 4643, - 390, - 4626, - 196 - ] -}, - { - "tm": 87084, - "vm": 3, - "s": [ - -1, - 6802776260, - -1, - 0, - 4665, - 127, - 4664, - 249, - 4644, - 37, - 4662, - 136, - 4645, - 2572, - 4644, - 485, - 4643, - 390, - 4626, - 196 - ] -} - ], - "scripts": [ - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - { - "url": "node:internal/assert", - "source": "'use strict';\n\nlet error;\nfunction lazyError() {\n if (!error) {\n error = require('internal/errors').codes.ERR_INTERNAL_ASSERTION;\n }\n return error;\n}\n\nfunction assert(value, message) {\n if (!value) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n }\n}\n\nfunction fail(message) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n}\n\nassert.fail = fail;\n\nmodule.exports = assert;\n", - "name": "assert", - "lineToColumn": {}, - "_entries": [], - "_sourceMapState": "unknown", - "id": 11, - "sourcePositions": [] - }, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - { - "url": "/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js", - "source": "const cluster = require('cluster')\n\ncluster.on('fork', () => {\n throw new Error('0x does not support clustering.')\n})\n", - "name": "no-cluster.js", - "lineToColumn": {}, - "_entries": [], - "_sourceMapState": "unknown", - "id": 81, - "sourcePositions": [] - }, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - null, - { - "url": "/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js", - "source": "'use strict'\nconst net = require('net')\n\nlet isWorker = false\ntry {\n // Skip redirecting stdout in Worker threads.\n isWorker = !require('worker_threads').isMainThread\n} catch (e) {}\n\nif (!isWorker) {\n const socket = new net.Socket({\n fd: 3,\n readable: false,\n writable: true\n })\n Object.defineProperty(process, 'stdout', {\n configurable: true,\n enumerable: true,\n get: () => socket\n })\n Object.defineProperty(process.stdout, 'fd', {\n value: socket._handle.fd\n })\n}\n", - "name": "redir-stdout.js", - "lineToColumn": {}, - "_entries": [], - "_sourceMapState": "unknown", - "id": 123, - "sourcePositions": [] - }, - null, - null, - { - "url": "node:worker_threads", - "source": "'use strict';\n\nconst {\n isMainThread,\n SHARE_ENV,\n resourceLimits,\n setEnvironmentData,\n getEnvironmentData,\n threadId,\n Worker,\n} = require('internal/worker');\n\nconst {\n MessagePort,\n MessageChannel,\n moveMessagePortToContext,\n receiveMessageOnPort,\n BroadcastChannel,\n} = require('internal/worker/io');\n\nconst {\n markAsUntransferable,\n} = require('internal/buffer');\n\nmodule.exports = {\n isMainThread,\n MessagePort,\n MessageChannel,\n markAsUntransferable,\n moveMessagePortToContext,\n receiveMessageOnPort,\n resourceLimits,\n threadId,\n SHARE_ENV,\n Worker,\n parentPort: null,\n workerData: null,\n BroadcastChannel,\n setEnvironmentData,\n getEnvironmentData,\n};\n", - "name": "node:worker_threads", - "lineToColumn": {}, - "_entries": [], - "_sourceMapState": "unknown", - "id": 126, - "sourcePositions": [] - }, - null, - null, - null, - null, - { - "url": "/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js", - "source": "'use strict'\n\nprocess.on('SIGINT', process.exit)\nprocess.on('SIGTERM', process.exit)\n", - "name": "soft-exit.js", - "lineToColumn": {}, - "_entries": [], - "_sourceMapState": "unknown", - "id": 131, - "sourcePositions": [] - } -]} diff --git a/53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready b/53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready deleted file mode 100644 index 12554f8086..0000000000 --- a/53242.0x/isolate-0x138008000-53242-53242-v8.log.preprocess-ready +++ /dev/null @@ -1,3218 +0,0 @@ -v8-version,11,3,244,8,-node.25,0 -v8-platform,macos,macos -shared-library,/Users/aditi.khare/.local/share/nvm/v20.10.0/bin/node,0x1012a4000,0x10286bc60,9764864 -shared-library,/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation,0x1aabda0b0,0x1aadc90a4,356089856 -shared-library,/usr/lib/libobjc.A.dylib,0x1aa79a000,0x1aa7d73d0,356089856 -shared-library,/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal,0x1ae2adacc,0x1ae2e5a90,356089856 -shared-library,/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation,0x1abd2f7e0,0x1ac5c4e08,356089856 -shared-library,/usr/lib/liboah.dylib,0x1b77c35bc,0x1b77c8cb0,356089856 -shared-library,/usr/lib/libfakelink.dylib,0x1b77f8468,0x1b77f9b80,356089856 -shared-library,/usr/lib/libicucore.A.dylib,0x1adcd4cd4,0x1adf2db20,356089856 -shared-library,/usr/lib/libSystem.B.dylib,0x1b77f5490,0x1b77f5adc,356089856 -shared-library,/System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking,0x1b77fabbc,0x1b77fae50,356089856 -shared-library,/usr/lib/libc++abi.dylib,0x1aab1ddc8,0x1aab319a0,356089856 -shared-library,/usr/lib/libc++.1.dylib,0x1aaa90e18,0x1aaaf0e70,356089856 -shared-library,/usr/lib/system/libcache.dylib,0x1b77ef5e0,0x1b77f2370,356089856 -shared-library,/usr/lib/system/libcommonCrypto.dylib,0x1b77a95e8,0x1b77b49e4,356089856 -shared-library,/usr/lib/system/libcompiler_rt.dylib,0x1b77d479c,0x1b77d7824,356089856 -shared-library,/usr/lib/system/libcopyfile.dylib,0x1b77cb0fc,0x1b77d1e50,356089856 -shared-library,/usr/lib/system/libcorecrypto.dylib,0x1aa8dd1c0,0x1aa964bc4,356089856 -shared-library,/usr/lib/system/libdispatch.dylib,0x1aa9c3d38,0x1aaa00c70,356089856 -shared-library,/usr/lib/system/libdyld.dylib,0x1aab7e310,0x1aaba0f58,356089856 -shared-library,/usr/lib/system/libkeymgr.dylib,0x1b77e4760,0x1b77e4e48,356089856 -shared-library,/usr/lib/system/libmacho.dylib,0x1b77835ac,0x1b778787c,356089856 -shared-library,/usr/lib/system/libquarantine.dylib,0x1b6c60b2c,0x1b6c62b48,356089856 -shared-library,/usr/lib/system/libremovefile.dylib,0x1b77e22f4,0x1b77e3c00,356089856 -shared-library,/usr/lib/system/libsystem_asl.dylib,0x1b02f93c4,0x1b030e010,356089856 -shared-library,/usr/lib/system/libsystem_blocks.dylib,0x1aa8729a8,0x1aa8758d8,356089856 -shared-library,/usr/lib/system/libsystem_c.dylib,0x1aaa0e37c,0x1aaa84290,356089856 -shared-library,/usr/lib/system/libsystem_collections.dylib,0x1b77d887c,0x1b77dc960,356089856 -shared-library,/usr/lib/system/libsystem_configuration.dylib,0x1b5e39524,0x1b5e3c700,356089856 -shared-library,/usr/lib/system/libsystem_containermanager.dylib,0x1b4e757b8,0x1b4e97d60,356089856 -shared-library,/usr/lib/system/libsystem_coreservices.dylib,0x1b741806c,0x1b741c0c0,356089856 -shared-library,/usr/lib/system/libsystem_darwin.dylib,0x1adf9c510,0x1adfa3170,356089856 -shared-library,/usr/lib/system/libsystem_darwindirectory.dylib,0x272fe2db0,0x272fe5268,356089856 -shared-library,/usr/lib/system/libsystem_dnssd.dylib,0x1b77e5dd0,0x1b77ebf50,356089856 -shared-library,/usr/lib/system/libsystem_eligibility.dylib,0x272fe78a4,0x272fe93e0,356089856 -shared-library,/usr/lib/system/libsystem_featureflags.dylib,0x1aaa0ac80,0x1aaa0ca28,356089856 -shared-library,/usr/lib/system/libsystem_info.dylib,0x1aabac874,0x1aabd32d0,356089856 -shared-library,/usr/lib/system/libsystem_m.dylib,0x1b77461c0,0x1b776cc0c,356089856 -shared-library,/usr/lib/system/libsystem_malloc.dylib,0x1aa986be0,0x1aa9b8f90,356089856 -shared-library,/usr/lib/system/libsystem_networkextension.dylib,0x1b02665a8,0x1b027b430,356089856 -shared-library,/usr/lib/system/libsystem_notify.dylib,0x1ae4120b4,0x1ae420aa0,356089856 -shared-library,/usr/lib/system/libsystem_sandbox.dylib,0x1b5e3dd20,0x1b5e41f60,356089856 -shared-library,/usr/lib/system/libsystem_sanitizers.dylib,0x272febaa0,0x272fed8c8,356089856 -shared-library,/usr/lib/system/libsystem_secinit.dylib,0x1b77de80c,0x1b77e0194,356089856 -shared-library,/usr/lib/system/libsystem_kernel.dylib,0x1aab35d80,0x1aab68f3c,356089856 -shared-library,/usr/lib/system/libsystem_platform.dylib,0x1aaba4540,0x1aabaa3e8,356089856 -shared-library,/usr/lib/system/libsystem_pthread.dylib,0x1aab70a88,0x1aab7b8e0,356089856 -shared-library,/usr/lib/system/libsystem_symptoms.dylib,0x1b1ce96e4,0x1b1cef2ac,356089856 -shared-library,/usr/lib/system/libsystem_trace.dylib,0x1aa8c2340,0x1aa8d89d8,356089856 -shared-library,/usr/lib/system/libunwind.dylib,0x1b77bab28,0x1b77c132c,356089856 -shared-library,/usr/lib/system/libxpc.dylib,0x1aa877990,0x1aa8b4848,356089856 -shared-library,/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit,0x1ae32f90c,0x1ae3e8a28,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices,0x1bee82fc0,0x1bee82fc0,356089856 -shared-library,/usr/lib/libDiagnosticMessagesClient.dylib,0x1b296de80,0x1b296ead8,356089856 -shared-library,/usr/lib/libenergytrace.dylib,0x1b02816a4,0x1b0281d28,356089856 -shared-library,/usr/lib/libbsm.0.dylib,0x1b6c883cc,0x1b6c96d40,356089856 -shared-library,/usr/lib/libz.1.dylib,0x1b7736a50,0x1b7742178,356089856 -shared-library,/usr/lib/system/libkxld.dylib,0x1b778c140,0x1b77a6a74,356089856 -shared-library,/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork,0x1afe92610,0x1b0114018,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents,0x1b34e0c78,0x1b34ead80,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore,0x1adfa79d0,0x1ae097e10,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata,0x1b29b7b4c,0x1b2a39ab8,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices,0x1b741dd78,0x1b7447e38,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit,0x1b78d42c0,0x1b7935870,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE,0x1b1c6a770,0x1b1cce210,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices,0x1ab0b3358,0x1ab2b3ce8,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices,0x1b8bfaa58,0x1b8c41e20,356089856 -shared-library,/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList,0x1b34ef364,0x1b350c918,356089856 -shared-library,/System/Library/Frameworks/Security.framework/Versions/A/Security,0x1ad902eb8,0x1adc22a98,356089856 -shared-library,/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration,0x1ab9ae5e4,0x1aba31a80,356089856 -shared-library,/usr/lib/libapple_nghttp2.dylib,0x1b7974138,0x1b7986290,356089856 -shared-library,/usr/lib/libcompression.dylib,0x1b79aa400,0x1b7a01708,356089856 -shared-library,/usr/lib/libsqlite3.dylib,0x1b18ddf3c,0x1b1a798e0,356089856 -shared-library,/System/Library/Frameworks/Network.framework/Versions/A/Network,0x1b1cf2f84,0x1b26c6e50,356089856 -shared-library,/usr/lib/libCoreEntitlements.dylib,0x2716a69d0,0x2716b01b0,356089856 -shared-library,/System/Library/PrivateFrameworks/MessageSecurity.framework/Versions/A/MessageSecurity,0x257c66da4,0x257c9fda0,356089856 -shared-library,/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer,0x1b18c4138,0x1b18d62e0,356089856 -shared-library,/usr/lib/libMobileGestalt.dylib,0x1b02839c0,0x1b02dbd18,356089856 -shared-library,/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression,0x1b7346dc0,0x1b7394e58,356089856 -shared-library,/usr/lib/libcoretls.dylib,0x1b6c70290,0x1b6c823b0,356089856 -shared-library,/usr/lib/libcoretls_cfhelpers.dylib,0x1b8c6fdf0,0x1b8c70c00,356089856 -shared-library,/usr/lib/libpam.2.dylib,0x1b79a386c,0x1b79a6c6c,356089856 -shared-library,/usr/lib/libxar.1.dylib,0x1b8ce25b0,0x1b8cee778,356089856 -shared-library,/System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout,0x1b3520518,0x1b3553970,356089856 -shared-library,/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration,0x1b2a520e8,0x1b2a58d28,356089856 -shared-library,/usr/lib/libarchive.2.dylib,0x1b784b5a4,0x1b78bdfe0,356089856 -shared-library,/usr/lib/libxml2.2.dylib,0x1b356a448,0x1b3633878,356089856 -shared-library,/usr/lib/liblangid.dylib,0x1b5e4a1c4,0x1b5e4acd0,356089856 -shared-library,/System/Library/Frameworks/Combine.framework/Versions/A/Combine,0x1bcd81874,0x1bce98820,356089856 -shared-library,/System/Library/PrivateFrameworks/CollectionsInternal.framework/Versions/A/CollectionsInternal,0x2463abf00,0x2464f0330,356089856 -shared-library,/System/Library/PrivateFrameworks/ReflectionInternal.framework/Versions/A/ReflectionInternal,0x25cd5c24c,0x25cd623d0,356089856 -shared-library,/System/Library/PrivateFrameworks/RuntimeInternal.framework/Versions/A/RuntimeInternal,0x25d2ee944,0x25d2fdfd0,356089856 -shared-library,/usr/lib/swift/libswiftCore.dylib,0x1ba845558,0x1bacac270,356089856 -shared-library,/usr/lib/swift/libswiftCoreFoundation.dylib,0x1d05401b4,0x1d0544f88,356089856 -shared-library,/usr/lib/swift/libswiftDarwin.dylib,0x1cdfb4358,0x1cdfb81c8,356089856 -shared-library,/usr/lib/swift/libswiftDispatch.dylib,0x1c04f3914,0x1c0504620,356089856 -shared-library,/usr/lib/swift/libswiftIOKit.dylib,0x1d058ad44,0x1d058afb0,356089856 -shared-library,/usr/lib/swift/libswiftObjectiveC.dylib,0x1c2d6849c,0x1c2d6a030,356089856 -shared-library,/usr/lib/swift/libswiftXPC.dylib,0x1d0552e34,0x1d057df50,356089856 -shared-library,/usr/lib/swift/libswift_Concurrency.dylib,0x272c9a830,0x272cf1be8,356089856 -shared-library,/usr/lib/swift/libswift_StringProcessing.dylib,0x272dee674,0x272e799a0,356089856 -shared-library,/usr/lib/swift/libswiftos.dylib,0x1c2d6cab4,0x1c2d81ba0,356089856 -shared-library,/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo,0x1b5e458a0,0x1b5e48488,356089856 -shared-library,/usr/lib/libpcap.A.dylib,0x1b77fbd2c,0x1b781d380,356089856 -shared-library,/usr/lib/libdns_services.dylib,0x1b1cdec0c,0x1b1ce5e80,356089856 -shared-library,/usr/lib/libnetwork.dylib,0x1afe90fc0,0x1afe90fc0,356089856 -shared-library,/System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer,0x1b696e358,0x1b697ac30,356089856 -shared-library,/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface,0x1b4ea08f4,0x1b4eb0cf8,356089856 -shared-library,/usr/lib/liblzma.5.dylib,0x1b8c50658,0x1b8c681e0,356089856 -shared-library,/usr/lib/swift/libswift_RegexParser.dylib,0x272d451f0,0x272dd2310,356089856 -shared-library,/usr/lib/libbz2.1.0.dylib,0x1b740b434,0x1b7415fb0,356089856 -shared-library,/usr/lib/libiconv.2.dylib,0x1b783194c,0x1b7837828,356089856 -shared-library,/usr/lib/libcharset.1.dylib,0x1b777f960,0x1b777fd60,356089856 -shared-library,/usr/lib/libheimdal-asn1.dylib,0x1b90cfdb8,0x1b90d9b48,356089856 -shared-library,/usr/lib/libCheckFix.dylib,0x1b6c638c8,0x1b6c6cd04,356089856 -shared-library,/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC,0x1b0311d18,0x1b032b1a8,356089856 -shared-library,/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP,0x1b5e4d0a0,0x1b5f47f50,356089856 -shared-library,/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities,0x1b2970ffc,0x1b29a83b0,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate,0x1bf148000,0x1bf148000,356089856 -shared-library,/usr/lib/libmecab.dylib,0x1b6c9a1b0,0x1b6ce8060,356089856 -shared-library,/usr/lib/libCRFSuite.dylib,0x1aba41ce0,0x1aba709b4,356089856 -shared-library,/usr/lib/libgermantok.dylib,0x1b6cf6294,0x1b6cf7d40,356089856 -shared-library,/usr/lib/libThaiTokenizer.dylib,0x1b794ad2c,0x1b794bd50,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage,0x1b2a5b1b0,0x1b2d9cbb0,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib,0x1bee5a000,0x1bee5a000,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib,0x1b8d28c00,0x1b8d9ee90,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib,0x1b6849000,0x1b6931a9c,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib,0x1ab4b9330,0x1ab84d49c,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib,0x1b7a7ef28,0x1b8be5830,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib,0x1b6cf9030,0x1b6d0ac28,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib,0x1b798f61c,0x1b79a0960,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib,0x1b7a7a1a0,0x1b7a7d1d0,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib,0x1b5f74cb0,0x1b67e25ac,356089856 -shared-library,/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib,0x1ab946bb0,0x1ab9a7c70,356089856 -shared-library,/System/Library/PrivateFrameworks/MIL.framework/Versions/A/MIL,0x2563b9404,0x25688faf0,356089856 -shared-library,/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory,0x1b34c2ac0,0x1b34d8448,356089856 -shared-library,/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory,0x1b34b35b4,0x1b34ba2b0,356089856 -shared-library,/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS,0x1b8c728c0,0x1b8cc7ea8,356089856 -shared-library,/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation,0x1b6ba0cc4,0x1b6be33a8,356089856 -shared-library,/usr/lib/libutil.dylib,0x1b8cf1068,0x1b8cf3660,356089856 -shared-library,/System/Library/PrivateFrameworks/InstalledContentLibrary.framework/Versions/A/InstalledContentLibrary,0x254518068,0x2545c1f10,356089856 -shared-library,/System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore,0x1ae2eec14,0x1ae31f8e0,356089856 -shared-library,/usr/lib/libapp_launch_measurement.dylib,0x1b351c800,0x1b351e750,356089856 -shared-library,/System/Library/PrivateFrameworks/AppleMobileFileIntegrity.framework/Versions/A/AppleMobileFileIntegrity,0x243b5bd44,0x243b67228,356089856 -shared-library,/usr/lib/libmis.dylib,0x1d050e920,0x1d0528be8,356089856 -shared-library,/System/Library/PrivateFrameworks/MobileSystemServices.framework/Versions/A/MobileSystemServices,0x1e0c029f8,0x1e0c04df8,356089856 -shared-library,/System/Library/PrivateFrameworks/ConfigProfileHelper.framework/Versions/A/ConfigProfileHelper,0x1fec633f4,0x1fec64788,356089856 -shared-library,/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics,0x1b293fa60,0x1b2963f28,356089856 -shared-library,/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce,0x1b794d58c,0x1b796f8dc,356089856 -shared-library,/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling,0x1ac98cb40,0x1acb2da88,356089856 -shared-library,/usr/lib/libxslt.1.dylib,0x1b8cf548c,0x1b8d17a70,356089856 -shared-library,/usr/lib/libcmph.dylib,0x1b7838910,0x1b7847bd0,356089856 -shared-library,/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji,0x1b693a3b0,0x1b69625a0,356089856 -shared-library,/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData,0x1b5f6f0d0,0x1b5f72a90,356089856 -shared-library,/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon,0x1ab855920,0x1ab91e2e0,356089856 -shared-library,/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement,0x1b6c2e98c,0x1b6c49b08,356089856 -shared-library,/usr/lib/libTLE.dylib,0x271892064,0x271899630,356089856 -shared-library-end -tick,0x19579e170,1250,0,0x0,6 -profiler,begin,1000 -new,CodeRange,0x106780000,0 -new,MemoryChunk,0x9bb438c0000,262144 -new,MemoryChunk,0x31a893f40000,262144 -new,MemoryChunk,0x1c5ed5100000,262144 -new,MemoryChunk,0x3d68f34c0000,262144 -new,MemoryChunk,0x954c3980000,262144 -heap-capacity,1030880 -heap-available,4346312128 -new,MemoryChunk,0x1746951c0000,262144 -tick,0x1955f5dac,2459,0,0x0,6 -new,MemoryChunk,0x1bbde7d40000,278528 -new,MemoryChunk,0x3f9e7a240000,262144 -new,MemoryChunk,0x179ce7ac0000,262144 -code-creation,Builtin,2,3375,0x101408000,812,DeoptimizationEntry_Eager -code-creation,Builtin,2,3375,0x101408340,812,DeoptimizationEntry_Lazy -code-creation,Builtin,2,3375,0x101408680,2032,RecordWriteSaveFP -code-creation,Builtin,2,3375,0x101408e80,1360,RecordWriteIgnoreFP -code-creation,Builtin,2,3417,0x1014093e0,280,EphemeronKeyBarrierSaveFP -code-creation,Builtin,2,3417,0x101409500,184,EphemeronKeyBarrierIgnoreFP -code-creation,Builtin,2,3417,0x1014095c0,76,AdaptorWithBuiltinExitFrame -code-creation,Builtin,2,3417,0x101409620,336,CallFunction_ReceiverIsNullOrUndefined -code-creation,Builtin,2,3417,0x101409780,412,CallFunction_ReceiverIsNotNullOrUndefined -code-creation,Builtin,2,3417,0x101409920,452,CallFunction_ReceiverIsAny -code-creation,Builtin,2,3417,0x101409b00,232,CallBoundFunction -code-creation,Builtin,2,3417,0x101409c00,856,CallWrappedFunction -code-creation,Builtin,2,3417,0x101409f60,192,Call_ReceiverIsNullOrUndefined -code-creation,Builtin,2,3459,0x10140a040,192,Call_ReceiverIsNotNullOrUndefined -code-creation,Builtin,2,3459,0x10140a120,192,Call_ReceiverIsAny -code-creation,Builtin,2,3459,0x10140a200,852,Call_ReceiverIsNullOrUndefined_Baseline_Compact -code-creation,Builtin,2,3459,0x10140a560,844,Call_ReceiverIsNullOrUndefined_Baseline -code-creation,Builtin,2,3459,0x10140a8c0,988,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact -code-creation,Builtin,2,3459,0x10140aca0,980,Call_ReceiverIsNotNullOrUndefined_Baseline -code-creation,Builtin,2,3459,0x10140b080,988,Call_ReceiverIsAny_Baseline_Compact -code-creation,Builtin,2,3459,0x10140b460,980,Call_ReceiverIsAny_Baseline -code-creation,Builtin,2,3459,0x10140b840,816,Call_ReceiverIsNullOrUndefined_WithFeedback -code-creation,Builtin,2,3459,0x10140bb80,816,Call_ReceiverIsNotNullOrUndefined_WithFeedback -code-creation,Builtin,2,3500,0x10140bec0,816,Call_ReceiverIsAny_WithFeedback -code-creation,Builtin,2,3500,0x10140c200,756,CallProxy -code-creation,Builtin,2,3500,0x10140c500,156,CallVarargs -code-creation,Builtin,2,3500,0x10140c5a0,1152,CallWithSpread -code-creation,Builtin,2,3500,0x10140ca40,1920,CallWithSpread_Baseline -code-creation,Builtin,2,3500,0x10140d1e0,1992,CallWithSpread_WithFeedback -code-creation,Builtin,2,3500,0x10140d9c0,1180,CallWithArrayLike -code-creation,Builtin,2,3500,0x10140de60,1972,CallWithArrayLike_WithFeedback -code-creation,Builtin,2,3500,0x10140e620,184,CallForwardVarargs -code-creation,Builtin,2,3500,0x10140e6e0,184,CallFunctionForwardVarargs -code-creation,Builtin,2,3500,0x10140e7a0,148,CallFunctionTemplate_CheckAccess -code-creation,Builtin,2,3542,0x10140e840,232,CallFunctionTemplate_CheckCompatibleReceiver -code-creation,Builtin,2,3542,0x10140e940,320,CallFunctionTemplate_CheckAccessAndCompatibleReceiver -code-creation,Builtin,2,3542,0x10140eaa0,24,ConstructFunction -code-creation,Builtin,2,3542,0x10140eac0,236,ConstructBoundFunction -code-creation,Builtin,2,3542,0x10140ebc0,44,ConstructedNonConstructable -code-creation,Builtin,2,3542,0x10140ec00,88,Construct -code-creation,Builtin,2,3542,0x10140ec60,156,ConstructVarargs -code-creation,Builtin,2,3542,0x10140ed00,1180,ConstructWithSpread -code-creation,Builtin,2,3542,0x10140f1a0,1928,ConstructWithSpread_Baseline -code-creation,Builtin,2,3542,0x10140f940,1908,ConstructWithSpread_WithFeedback -code-creation,Builtin,2,3542,0x1014100c0,1308,ConstructWithArrayLike -code-creation,Builtin,2,3584,0x1014105e0,2028,ConstructWithArrayLike_WithFeedback -code-creation,Builtin,2,3584,0x101410de0,236,ConstructForwardVarargs -code-creation,Builtin,2,3584,0x101410ee0,236,ConstructFunctionForwardVarargs -code-creation,Builtin,2,3584,0x101410fe0,724,Construct_Baseline -code-creation,Builtin,2,3584,0x1014112c0,728,Construct_WithFeedback -code-creation,Builtin,2,3584,0x1014115a0,540,JSConstructStubGeneric -code-creation,Builtin,2,3584,0x1014117c0,448,JSBuiltinsConstructStub -code-creation,Builtin,2,3584,0x1014119a0,812,FastNewObject -code-creation,Builtin,2,3584,0x101411ce0,344,FastNewClosure -code-creation,Builtin,2,3625,0x101411e40,796,ConstructProxy -code-creation,Builtin,2,3625,0x101412160,236,JSEntry -code-creation,Builtin,2,3625,0x101412260,236,JSConstructEntry -code-creation,Builtin,2,3625,0x101412360,236,JSRunMicrotasksEntry -code-creation,Builtin,2,3625,0x101412460,184,JSEntryTrampoline -code-creation,Builtin,2,3625,0x101412520,184,JSConstructEntryTrampoline -code-creation,Builtin,2,3625,0x1014125e0,356,ResumeGeneratorTrampoline -code-creation,Builtin,2,3625,0x101412760,1400,StringFromCodePointAt -code-creation,Builtin,2,3625,0x101412ce0,800,StringEqual -code-creation,Builtin,2,3625,0x101413020,380,StringGreaterThan -code-creation,Builtin,2,3625,0x1014131a0,380,StringGreaterThanOrEqual -code-creation,Builtin,2,3667,0x101413320,380,StringLessThan -code-creation,Builtin,2,3667,0x1014134a0,380,StringLessThanOrEqual -code-creation,Builtin,2,3667,0x101413620,380,StringCompare -code-creation,Builtin,2,3667,0x1014137a0,2748,StringSubstring -code-creation,Builtin,2,3667,0x101414260,120,OrderedHashTableHealIndex -code-creation,Builtin,2,3667,0x1014142e0,1072,InterpreterEntryTrampoline -code-creation,Builtin,2,3667,0x101414720,1108,InterpreterEntryTrampolineForProfiling -code-creation,Builtin,2,3667,0x101414b80,124,InterpreterPushArgsThenCall -code-creation,Builtin,2,3667,0x101414c00,132,InterpreterPushUndefinedAndArgsThenCall -code-creation,Builtin,2,3667,0x101414ca0,132,InterpreterPushArgsThenCallWithFinalSpread -code-creation,Builtin,2,3667,0x101414d40,132,InterpreterPushArgsThenConstruct -code-creation,Builtin,2,3709,0x101414de0,132,InterpreterPushArgsThenConstructArrayFunction -code-creation,Builtin,2,3709,0x101414e80,140,InterpreterPushArgsThenConstructWithFinalSpread -code-creation,Builtin,2,3709,0x101414f20,92,InterpreterEnterAtBytecode -code-creation,Builtin,2,3709,0x101414f80,224,InterpreterEnterAtNextBytecode -code-creation,Builtin,2,3709,0x101415080,144,InterpreterOnStackReplacement -code-creation,Builtin,2,3709,0x101415120,488,BaselineOutOfLinePrologue -code-creation,Builtin,2,3709,0x101415320,24,BaselineOutOfLinePrologueDeopt -code-creation,Builtin,2,3709,0x101415340,140,BaselineOnStackReplacement -code-creation,Builtin,2,3750,0x1014153e0,104,BaselineLeaveFrame -code-creation,Builtin,2,3750,0x101415460,232,BaselineOrInterpreterEnterAtBytecode -code-creation,Builtin,2,3750,0x101415560,236,BaselineOrInterpreterEnterAtNextBytecode -code-creation,Builtin,2,3750,0x101415660,212,InterpreterOnStackReplacement_ToBaseline -code-creation,Builtin,2,3750,0x101415740,4,MaglevOnStackReplacement -code-creation,Builtin,2,3750,0x101415760,872,CompileLazy -code-creation,Builtin,2,3750,0x101415ae0,76,CompileLazyDeoptimizedCode -code-creation,Builtin,2,3750,0x101415b40,276,InstantiateAsmJs -code-creation,Builtin,2,3750,0x101415c60,44,NotifyDeoptimized -code-creation,Builtin,2,3792,0x101415ca0,88,ContinueToCodeStubBuiltin -code-creation,Builtin,2,3792,0x101415d00,92,ContinueToCodeStubBuiltinWithResult -code-creation,Builtin,2,3792,0x101415d60,92,ContinueToJavaScriptBuiltin -code-creation,Builtin,2,3792,0x101415dc0,108,ContinueToJavaScriptBuiltinWithResult -code-creation,Builtin,2,3792,0x101415e40,372,CallApiCallback -code-creation,Builtin,2,3792,0x101415fc0,344,CallApiGetter -code-creation,Builtin,2,3792,0x101416120,8,HandleApiCall -code-creation,Builtin,2,3792,0x101416140,8,HandleApiCallAsFunction -code-creation,Builtin,2,3792,0x101416160,8,HandleApiCallAsConstructor -code-creation,Builtin,2,3792,0x101416180,56,AllocateInYoungGeneration -code-creation,Builtin,2,3792,0x1014161c0,52,AllocateRegularInYoungGeneration -code-creation,Builtin,2,3834,0x101416200,56,AllocateInOldGeneration -code-creation,Builtin,2,3834,0x101416240,52,AllocateRegularInOldGeneration -code-creation,Builtin,2,3834,0x101416280,156,NewHeapNumber -code-creation,Builtin,2,3834,0x101416320,528,CopyFastSmiOrObjectElements -code-creation,Builtin,2,3834,0x101416540,552,GrowFastDoubleElements -code-creation,Builtin,2,3834,0x101416780,448,GrowFastSmiOrObjectElements -code-creation,Builtin,2,3834,0x101416960,460,DebugBreakTrampoline -code-creation,Builtin,2,3834,0x101416b40,320,RestartFrameTrampoline -code-creation,Builtin,2,3834,0x101416ca0,220,ToNumber -code-creation,Builtin,2,3875,0x101416d80,124,ToBigInt -code-creation,Builtin,2,3875,0x101416e00,328,ToNumber_Baseline -code-creation,Builtin,2,3875,0x101416f60,392,ToNumeric_Baseline -code-creation,Builtin,2,3875,0x101417100,140,PlainPrimitiveToNumber -code-creation,Builtin,2,3875,0x1014171a0,260,ToNumberConvertBigInt -code-creation,Builtin,2,3875,0x1014172c0,100,ToBigIntConvertNumber -code-creation,Builtin,2,3875,0x101417340,148,Typeof -code-creation,Builtin,2,3875,0x1014173e0,140,BigIntToI64 -code-creation,Builtin,2,3875,0x101417480,8,BigIntToI32Pair -code-creation,Builtin,2,3875,0x1014174a0,248,I64ToBigInt -code-creation,Builtin,2,3917,0x1014175a0,8,I32PairToBigInt -code-creation,Builtin,2,3917,0x1014175c0,136,ToBooleanLazyDeoptContinuation -code-creation,Builtin,2,3917,0x101417660,192,MathCeilContinuation -code-creation,Builtin,2,3917,0x101417740,192,MathFloorContinuation -code-creation,Builtin,2,3917,0x101417820,216,MathRoundContinuation -code-creation,Builtin,2,3917,0x101417900,4728,KeyedLoadIC_PolymorphicName -code-creation,Builtin,2,3917,0x101418b80,15844,KeyedStoreIC_Megamorphic -code-creation,Builtin,2,3917,0x10141c980,12344,DefineKeyedOwnIC_Megamorphic -code-creation,Builtin,2,3917,0x10141f9c0,708,LoadGlobalIC_NoFeedback -code-creation,Builtin,2,3917,0x10141fca0,84,LoadIC_FunctionPrototype -code-creation,Builtin,2,3959,0x10141fd00,16,LoadIC_StringLength -code-creation,Builtin,2,3959,0x10141fd20,20,LoadIC_StringWrapperLength -code-creation,Builtin,2,3959,0x10141fd40,4420,LoadIC_NoFeedback -code-creation,Builtin,2,3959,0x101420ea0,44,StoreGlobalIC_Slow -code-creation,Builtin,2,3959,0x101420ee0,7628,StoreIC_NoFeedback -code-creation,Builtin,2,3959,0x101422cc0,4076,DefineNamedOwnIC_NoFeedback -code-creation,Builtin,2,3959,0x101423cc0,220,KeyedLoadIC_SloppyArguments -code-creation,Builtin,2,3959,0x101423da0,68,LoadIndexedInterceptorIC -code-creation,Builtin,2,3959,0x101423e00,288,KeyedStoreIC_SloppyArguments_Standard -code-creation,Builtin,2,3959,0x101423f40,288,KeyedStoreIC_SloppyArguments_GrowNoTransitionHandleCOW -code-creation,Builtin,2,3959,0x101424080,288,KeyedStoreIC_SloppyArguments_NoTransitionIgnoreOOB -code-creation,Builtin,2,4000,0x1014241c0,288,KeyedStoreIC_SloppyArguments_NoTransitionHandleCOW -code-creation,Builtin,2,4000,0x101424300,12408,StoreFastElementIC_Standard -code-creation,Builtin,2,4000,0x101427380,10124,StoreFastElementIC_GrowNoTransitionHandleCOW -code-creation,Builtin,2,4000,0x101429b20,11908,StoreFastElementIC_NoTransitionIgnoreOOB -code-creation,Builtin,2,4000,0x10142c9c0,6020,StoreFastElementIC_NoTransitionHandleCOW -code-creation,Builtin,2,4000,0x10142e160,8236,ElementsTransitionAndStore_Standard -code-creation,Builtin,2,4000,0x1014301a0,21552,ElementsTransitionAndStore_GrowNoTransitionHandleCOW -code-creation,Builtin,2,4000,0x1014355e0,8236,ElementsTransitionAndStore_NoTransitionIgnoreOOB -code-creation,Builtin,2,4000,0x101437620,11368,ElementsTransitionAndStore_NoTransitionHandleCOW -code-creation,Builtin,2,4042,0x10143a2a0,1120,KeyedHasIC_PolymorphicName -code-creation,Builtin,2,4042,0x10143a720,200,KeyedHasIC_SloppyArguments -code-creation,Builtin,2,4042,0x10143a800,68,HasIndexedInterceptorIC -code-creation,Builtin,2,4042,0x10143a860,164,EnqueueMicrotask -code-creation,Builtin,2,4042,0x10143a920,8,RunMicrotasksTrampoline -code-creation,Builtin,2,4042,0x10143a940,3524,RunMicrotasks -code-creation,Builtin,2,4042,0x10143b720,3800,HasProperty -code-creation,Builtin,2,4042,0x10143c600,1180,DeleteProperty -code-creation,Builtin,2,4042,0x10143caa0,2876,CopyDataProperties -code-creation,Builtin,2,4042,0x10143d5e0,11048,SetDataProperties -code-creation,Builtin,2,4084,0x101440120,3532,CopyDataPropertiesWithExcludedPropertiesOnStack -code-creation,Builtin,2,4084,0x101440f00,76,CopyDataPropertiesWithExcludedProperties -code-creation,Builtin,2,4084,0x101440f60,32,Abort -code-creation,Builtin,2,4084,0x101440fa0,32,AbortCSADcheck -code-creation,Builtin,2,4084,0x101440fe0,8,EmptyFunction -code-creation,Builtin,2,4084,0x101441000,8,Illegal -code-creation,Builtin,2,4084,0x101441020,8,StrictPoisonPillThrower -code-creation,Builtin,2,4084,0x101441040,8,UnsupportedThrower -code-creation,Builtin,2,4084,0x101441060,80,ReturnReceiver -code-creation,Builtin,2,4084,0x1014410c0,36,ArrayConstructor -code-creation,Builtin,2,4125,0x101441100,452,ArrayConstructorImpl -code-creation,Builtin,2,4125,0x1014412e0,228,ArrayNoArgumentConstructor_PackedSmi_DontOverride -code-creation,Builtin,2,4125,0x1014413e0,228,ArrayNoArgumentConstructor_HoleySmi_DontOverride -code-creation,Builtin,2,4125,0x1014414e0,188,ArrayNoArgumentConstructor_PackedSmi_DisableAllocationSites -code-creation,Builtin,2,4125,0x1014415a0,188,ArrayNoArgumentConstructor_HoleySmi_DisableAllocationSites -code-creation,Builtin,2,4125,0x101441660,188,ArrayNoArgumentConstructor_Packed_DisableAllocationSites -code-creation,Builtin,2,4125,0x101441720,188,ArrayNoArgumentConstructor_Holey_DisableAllocationSites -code-creation,Builtin,2,4125,0x1014417e0,192,ArrayNoArgumentConstructor_PackedDouble_DisableAllocationSites -code-creation,Builtin,2,4125,0x1014418c0,192,ArrayNoArgumentConstructor_HoleyDouble_DisableAllocationSites -code-creation,Builtin,2,4167,0x1014419a0,260,ArraySingleArgumentConstructor_PackedSmi_DontOverride -code-creation,Builtin,2,4167,0x101441ac0,504,ArraySingleArgumentConstructor_HoleySmi_DontOverride -code-creation,Builtin,2,4167,0x101441cc0,220,ArraySingleArgumentConstructor_PackedSmi_DisableAllocationSites -code-creation,Builtin,2,4167,0x101441da0,416,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites -code-creation,Builtin,2,4167,0x101441f60,220,ArraySingleArgumentConstructor_Packed_DisableAllocationSites -code-creation,Builtin,2,4167,0x101442040,416,ArraySingleArgumentConstructor_Holey_DisableAllocationSites -code-creation,Builtin,2,4167,0x101442200,220,ArraySingleArgumentConstructor_PackedDouble_DisableAllocationSites -code-creation,Builtin,2,4209,0x1014422e0,420,ArraySingleArgumentConstructor_HoleyDouble_DisableAllocationSites -code-creation,Builtin,2,4209,0x1014424a0,60,ArrayNArgumentsConstructor -code-creation,Builtin,2,4209,0x1014424e0,8,ArrayConcat -code-creation,Builtin,2,4209,0x101442500,8,ArrayPrototypeFill -code-creation,Builtin,2,4209,0x101442520,1424,ArrayIncludesSmi -code-creation,Builtin,2,4209,0x101442ac0,1352,ArrayIncludesSmiOrObject -code-creation,Builtin,2,4209,0x101443020,352,ArrayIncludesPackedDoubles -code-creation,Builtin,2,4209,0x1014431a0,472,ArrayIncludesHoleyDoubles -code-creation,Builtin,2,4250,0x101443380,624,ArrayIncludes -code-creation,Builtin,2,4250,0x101443600,1308,ArrayIndexOfSmi -code-creation,Builtin,2,4250,0x101443b20,1252,ArrayIndexOfSmiOrObject -code-creation,Builtin,2,4250,0x101444020,284,ArrayIndexOfPackedDoubles -code-creation,Builtin,2,4250,0x101444140,284,ArrayIndexOfHoleyDoubles -code-creation,Builtin,2,4250,0x101444260,624,ArrayIndexOf -code-creation,Builtin,2,4250,0x1014444e0,8,ArrayPop -code-creation,Builtin,2,4250,0x101444500,584,ArrayPrototypePop -code-creation,Builtin,2,4250,0x101444760,8,ArrayPrototypeGroup -code-creation,Builtin,2,4250,0x101444780,8,ArrayPrototypeGroupToMap -code-creation,Builtin,2,4292,0x1014447a0,8,ArrayPush -code-creation,Builtin,2,4292,0x1014447c0,2404,ArrayPrototypePush -code-creation,Builtin,2,4292,0x101445140,8,ArrayShift -code-creation,Builtin,2,4292,0x101445160,8,ArrayUnshift -code-creation,Builtin,2,4292,0x101445180,8,ArrayFromAsync -code-creation,Builtin,2,4292,0x1014451a0,1064,CloneFastJSArray -code-creation,Builtin,2,4292,0x1014455e0,2364,CloneFastJSArrayFillingHoles -code-creation,Builtin,2,4292,0x101445f20,1100,ExtractFastJSArray -code-creation,Builtin,2,4292,0x101446380,256,ArrayPrototypeEntries -code-creation,Builtin,2,4334,0x1014464a0,252,ArrayPrototypeKeys -code-creation,Builtin,2,4334,0x1014465a0,256,ArrayPrototypeValues -code-creation,Builtin,2,4334,0x1014466c0,3888,ArrayIteratorPrototypeNext -code-creation,Builtin,2,4334,0x101447600,4856,FlattenIntoArray -code-creation,Builtin,2,4334,0x101448900,4816,FlatMapIntoArray -code-creation,Builtin,2,4334,0x101449be0,408,ArrayPrototypeFlat -code-creation,Builtin,2,4334,0x101449d80,468,ArrayPrototypeFlatMap -code-creation,Builtin,2,4334,0x101449f60,8,ArrayBufferConstructor -code-creation,Builtin,2,4334,0x101449f80,8,ArrayBufferConstructor_DoNotInitialize -code-creation,Builtin,2,4334,0x101449fa0,8,ArrayBufferPrototypeSlice -code-creation,Builtin,2,4375,0x101449fc0,8,ArrayBufferPrototypeResize -code-creation,Builtin,2,4375,0x101449fe0,8,ArrayBufferPrototypeTransfer -code-creation,Builtin,2,4375,0x10144a000,8,ArrayBufferPrototypeTransferToFixedLength -code-creation,Builtin,2,4375,0x10144a020,952,AsyncFunctionEnter -code-creation,Builtin,2,4375,0x10144a3e0,96,AsyncFunctionReject -code-creation,Builtin,2,4375,0x10144a460,92,AsyncFunctionResolve -code-creation,Builtin,2,4375,0x10144a4c0,16,AsyncFunctionLazyDeoptContinuation -code-creation,Builtin,2,4375,0x10144a4e0,1512,AsyncFunctionAwaitCaught -code-creation,Builtin,2,4375,0x10144aae0,1512,AsyncFunctionAwaitUncaught -code-creation,Builtin,2,4375,0x10144b0e0,208,AsyncFunctionAwaitRejectClosure -code-creation,Builtin,2,4417,0x10144b1c0,204,AsyncFunctionAwaitResolveClosure -code-creation,Builtin,2,4417,0x10144b2a0,8,BigIntConstructor -code-creation,Builtin,2,4417,0x10144b2c0,8,BigIntAsUintN -code-creation,Builtin,2,4417,0x10144b2e0,8,BigIntAsIntN -code-creation,Builtin,2,4417,0x10144b300,8,BigIntPrototypeToLocaleString -code-creation,Builtin,2,4417,0x10144b320,8,BigIntPrototypeToString -code-creation,Builtin,2,4417,0x10144b340,8,BigIntPrototypeValueOf -code-creation,Builtin,2,4417,0x10144b360,8,CallSitePrototypeGetColumnNumber -code-creation,Builtin,2,4417,0x10144b380,8,CallSitePrototypeGetEnclosingColumnNumber -code-creation,Builtin,2,4417,0x10144b3a0,8,CallSitePrototypeGetEnclosingLineNumber -code-creation,Builtin,2,4459,0x10144b3c0,8,CallSitePrototypeGetEvalOrigin -code-creation,Builtin,2,4459,0x10144b3e0,8,CallSitePrototypeGetFileName -code-creation,Builtin,2,4459,0x10144b400,8,CallSitePrototypeGetFunction -code-creation,Builtin,2,4459,0x10144b420,8,CallSitePrototypeGetFunctionName -code-creation,Builtin,2,4459,0x10144b440,8,CallSitePrototypeGetLineNumber -code-creation,Builtin,2,4459,0x10144b460,8,CallSitePrototypeGetMethodName -code-creation,Builtin,2,4459,0x10144b480,8,CallSitePrototypeGetPosition -code-creation,Builtin,2,4459,0x10144b4a0,8,CallSitePrototypeGetPromiseIndex -code-creation,Builtin,2,4459,0x10144b4c0,8,CallSitePrototypeGetScriptHash -code-creation,Builtin,2,4459,0x10144b4e0,8,CallSitePrototypeGetScriptNameOrSourceURL -code-creation,Builtin,2,4500,0x10144b500,8,CallSitePrototypeGetThis -code-creation,Builtin,2,4500,0x10144b520,8,CallSitePrototypeGetTypeName -code-creation,Builtin,2,4500,0x10144b540,8,CallSitePrototypeIsAsync -code-creation,Builtin,2,4500,0x10144b560,8,CallSitePrototypeIsConstructor -code-creation,Builtin,2,4500,0x10144b580,8,CallSitePrototypeIsEval -code-creation,Builtin,2,4500,0x10144b5a0,8,CallSitePrototypeIsNative -code-creation,Builtin,2,4500,0x10144b5c0,8,CallSitePrototypeIsPromiseAll -code-creation,Builtin,2,4500,0x10144b5e0,8,CallSitePrototypeIsToplevel -code-creation,Builtin,2,4500,0x10144b600,8,CallSitePrototypeToString -code-creation,Builtin,2,4500,0x10144b620,8,ConsoleDebug -code-creation,Builtin,2,4542,0x10144b640,8,ConsoleError -code-creation,Builtin,2,4542,0x10144b660,8,ConsoleInfo -code-creation,Builtin,2,4542,0x10144b680,8,ConsoleLog -code-creation,Builtin,2,4542,0x10144b6a0,8,ConsoleWarn -code-creation,Builtin,2,4542,0x10144b6c0,8,ConsoleDir -code-creation,Builtin,2,4542,0x10144b6e0,8,ConsoleDirXml -code-creation,Builtin,2,4542,0x10144b700,8,ConsoleTable -code-creation,Builtin,2,4542,0x10144b720,8,ConsoleTrace -code-creation,Builtin,2,4542,0x10144b740,8,ConsoleGroup -code-creation,Builtin,2,4542,0x10144b760,8,ConsoleGroupCollapsed -code-creation,Builtin,2,4584,0x10144b780,8,ConsoleGroupEnd -code-creation,Builtin,2,4584,0x10144b7a0,8,ConsoleClear -code-creation,Builtin,2,4584,0x10144b7c0,8,ConsoleCount -code-creation,Builtin,2,4584,0x10144b7e0,8,ConsoleCountReset -code-creation,Builtin,2,4584,0x10144b800,8,ConsoleAssert -code-creation,Builtin,2,4584,0x10144b820,8,ConsoleProfile -code-creation,Builtin,2,4584,0x10144b840,8,ConsoleProfileEnd -code-creation,Builtin,2,4584,0x10144b860,8,ConsoleTime -code-creation,Builtin,2,4584,0x10144b880,8,ConsoleTimeLog -code-creation,Builtin,2,4584,0x10144b8a0,8,ConsoleTimeEnd -code-creation,Builtin,2,4584,0x10144b8c0,8,ConsoleTimeStamp -code-creation,Builtin,2,4584,0x10144b8e0,8,ConsoleContext -code-creation,Builtin,2,4625,0x10144b900,8,DataViewConstructor -code-creation,Builtin,2,4625,0x10144b920,8,DateConstructor -code-creation,Builtin,2,4625,0x10144b940,208,DatePrototypeGetDate -code-creation,Builtin,2,4625,0x10144ba20,208,DatePrototypeGetDay -code-creation,Builtin,2,4625,0x10144bb00,208,DatePrototypeGetFullYear -code-creation,Builtin,2,4625,0x10144bbe0,208,DatePrototypeGetHours -code-creation,Builtin,2,4625,0x10144bcc0,180,DatePrototypeGetMilliseconds -code-creation,Builtin,2,4625,0x10144bd80,208,DatePrototypeGetMinutes -code-creation,Builtin,2,4625,0x10144be60,208,DatePrototypeGetMonth -code-creation,Builtin,2,4625,0x10144bf40,208,DatePrototypeGetSeconds -code-creation,Builtin,2,4667,0x10144c020,144,DatePrototypeGetTime -code-creation,Builtin,2,4667,0x10144c0c0,180,DatePrototypeGetTimezoneOffset -code-creation,Builtin,2,4667,0x10144c180,180,DatePrototypeGetUTCDate -code-creation,Builtin,2,4667,0x10144c240,180,DatePrototypeGetUTCDay -code-creation,Builtin,2,4667,0x10144c300,180,DatePrototypeGetUTCFullYear -code-creation,Builtin,2,4667,0x10144c3c0,180,DatePrototypeGetUTCHours -code-creation,Builtin,2,4667,0x10144c480,180,DatePrototypeGetUTCMilliseconds -code-creation,Builtin,2,4667,0x10144c540,180,DatePrototypeGetUTCMinutes -code-creation,Builtin,2,4667,0x10144c600,180,DatePrototypeGetUTCMonth -code-creation,Builtin,2,4667,0x10144c6c0,180,DatePrototypeGetUTCSeconds -code-creation,Builtin,2,4667,0x10144c780,144,DatePrototypeValueOf -code-creation,Builtin,2,4709,0x10144c820,460,DatePrototypeToPrimitive -code-creation,Builtin,2,4709,0x10144ca00,8,DatePrototypeGetYear -code-creation,Builtin,2,4709,0x10144ca20,8,DatePrototypeSetYear -code-creation,Builtin,2,4709,0x10144ca40,8,DateNow -code-creation,Builtin,2,4709,0x10144ca60,8,DateParse -code-creation,Builtin,2,4709,0x10144ca80,8,DatePrototypeSetDate -code-creation,Builtin,2,4709,0x10144caa0,8,DatePrototypeSetFullYear -code-creation,Builtin,2,4709,0x10144cac0,8,DatePrototypeSetHours -code-creation,Builtin,2,4709,0x10144cae0,8,DatePrototypeSetMilliseconds -code-creation,Builtin,2,4709,0x10144cb00,8,DatePrototypeSetMinutes -code-creation,Builtin,2,4750,0x10144cb20,8,DatePrototypeSetMonth -code-creation,Builtin,2,4750,0x10144cb40,8,DatePrototypeSetSeconds -code-creation,Builtin,2,4750,0x10144cb60,8,DatePrototypeSetTime -code-creation,Builtin,2,4750,0x10144cb80,8,DatePrototypeSetUTCDate -code-creation,Builtin,2,4750,0x10144cba0,8,DatePrototypeSetUTCFullYear -code-creation,Builtin,2,4750,0x10144cbc0,8,DatePrototypeSetUTCHours -code-creation,Builtin,2,4750,0x10144cbe0,8,DatePrototypeSetUTCMilliseconds -code-creation,Builtin,2,4750,0x10144cc00,8,DatePrototypeSetUTCMinutes -code-creation,Builtin,2,4750,0x10144cc20,8,DatePrototypeSetUTCMonth -code-creation,Builtin,2,4792,0x10144cc40,8,DatePrototypeSetUTCSeconds -code-creation,Builtin,2,4792,0x10144cc60,8,DatePrototypeToDateString -code-creation,Builtin,2,4792,0x10144cc80,8,DatePrototypeToISOString -code-creation,Builtin,2,4792,0x10144cca0,8,DatePrototypeToUTCString -code-creation,Builtin,2,4792,0x10144ccc0,8,DatePrototypeToString -code-creation,Builtin,2,4792,0x10144cce0,8,DatePrototypeToTimeString -code-creation,Builtin,2,4792,0x10144cd00,8,DatePrototypeToJson -code-creation,Builtin,2,4792,0x10144cd20,8,DateUTC -code-creation,Builtin,2,4792,0x10144cd40,8,ErrorConstructor -code-creation,Builtin,2,4792,0x10144cd60,8,ErrorCaptureStackTrace -code-creation,Builtin,2,4834,0x10144cd80,8,ErrorPrototypeToString -code-creation,Builtin,2,4834,0x10144cda0,8,FunctionConstructor -code-creation,Builtin,2,4834,0x10144cdc0,80,FunctionPrototypeApply -code-creation,Builtin,2,4834,0x10144ce20,8,FunctionPrototypeBind -code-creation,Builtin,2,4834,0x10144ce40,152,FunctionPrototypeCall -code-creation,Builtin,2,4834,0x10144cee0,8,FunctionPrototypeToString -code-creation,Builtin,2,4834,0x10144cf00,244,CreateIterResultObject -code-creation,Builtin,2,4834,0x10144d000,1040,CreateGeneratorObject -code-creation,Builtin,2,4834,0x10144d420,8,GeneratorFunctionConstructor -code-creation,Builtin,2,4834,0x10144d440,436,GeneratorPrototypeNext -code-creation,Builtin,2,4875,0x10144d600,440,GeneratorPrototypeReturn -code-creation,Builtin,2,4875,0x10144d7c0,452,GeneratorPrototypeThrow -code-creation,Builtin,2,4875,0x10144d9a0,8,AsyncFunctionConstructor -code-creation,Builtin,2,4875,0x10144d9c0,368,SuspendGeneratorBaseline -code-creation,Builtin,2,4875,0x10144db40,116,ResumeGeneratorBaseline -code-creation,Builtin,2,4875,0x10144dbc0,56,GetIteratorWithFeedbackLazyDeoptContinuation -code-creation,Builtin,2,4875,0x10144dc00,112,CallIteratorWithFeedbackLazyDeoptContinuation -code-creation,Builtin,2,4875,0x10144dc80,8,GlobalDecodeURI -code-creation,Builtin,2,4875,0x10144dca0,8,GlobalDecodeURIComponent -code-creation,Builtin,2,4875,0x10144dcc0,8,GlobalEncodeURI -code-creation,Builtin,2,4875,0x10144dce0,8,GlobalEncodeURIComponent -code-creation,Builtin,2,4917,0x10144dd00,8,GlobalEscape -code-creation,Builtin,2,4917,0x10144dd20,8,GlobalUnescape -code-creation,Builtin,2,4917,0x10144dd40,8,GlobalEval -code-creation,Builtin,2,4917,0x10144dd60,160,GlobalIsFinite -code-creation,Builtin,2,4917,0x10144de20,156,GlobalIsNaN -code-creation,Builtin,2,4917,0x10144dec0,8,JsonParse -code-creation,Builtin,2,4917,0x10144dee0,8,JsonStringify -code-creation,Builtin,2,4917,0x10144df00,8,JsonRawJson -code-creation,Builtin,2,4917,0x10144df20,8,JsonIsRawJson -code-creation,Builtin,2,4917,0x10144df40,5344,LoadIC -code-creation,Builtin,2,4917,0x10144f440,4960,LoadIC_Megamorphic -code-creation,Builtin,2,4959,0x1014507c0,5208,LoadIC_Noninlined -code-creation,Builtin,2,4959,0x101451c20,48,LoadICTrampoline -code-creation,Builtin,2,4959,0x101451c60,28,LoadICBaseline -code-creation,Builtin,2,4959,0x101451c80,48,LoadICTrampoline_Megamorphic -code-creation,Builtin,2,4959,0x101451cc0,10192,LoadSuperIC -code-creation,Builtin,2,4959,0x1014544a0,28,LoadSuperICBaseline -code-creation,Builtin,2,4959,0x1014544c0,7740,KeyedLoadIC -code-creation,Builtin,2,4959,0x101456300,15812,KeyedLoadIC_Megamorphic -code-creation,Builtin,2,4959,0x10145a0e0,13080,KeyedLoadIC_MegamorphicStringKey -code-creation,Builtin,2,4959,0x10145d400,48,KeyedLoadICTrampoline -code-creation,Builtin,2,4959,0x10145d440,28,KeyedLoadICBaseline -code-creation,Builtin,2,5000,0x10145d460,48,KeyedLoadICTrampoline_Megamorphic -code-creation,Builtin,2,5000,0x10145d4a0,48,KeyedLoadICTrampoline_MegamorphicStringKey -code-creation,Builtin,2,5000,0x10145d4e0,4800,StoreGlobalIC -code-creation,Builtin,2,5000,0x10145e7c0,48,StoreGlobalICTrampoline -code-creation,Builtin,2,5000,0x10145e800,28,StoreGlobalICBaseline -code-creation,Builtin,2,5000,0x10145e820,5296,StoreIC -code-creation,Builtin,2,5000,0x10145fce0,48,StoreICTrampoline -code-creation,Builtin,2,5042,0x10145fd20,28,StoreICBaseline -code-creation,Builtin,2,5042,0x10145fd40,5116,DefineNamedOwnIC -code-creation,Builtin,2,5042,0x101461140,48,DefineNamedOwnICTrampoline -code-creation,Builtin,2,5042,0x101461180,28,DefineNamedOwnICBaseline -code-creation,Builtin,2,5042,0x1014611a0,5704,KeyedStoreIC -code-creation,Builtin,2,5042,0x101462800,48,KeyedStoreICTrampoline -code-creation,Builtin,2,5042,0x101462840,28,KeyedStoreICBaseline -code-creation,Builtin,2,5042,0x101462860,5576,DefineKeyedOwnIC -code-creation,Builtin,2,5042,0x101463e40,56,DefineKeyedOwnICTrampoline -code-creation,Builtin,2,5042,0x101463e80,36,DefineKeyedOwnICBaseline -code-creation,Builtin,2,5042,0x101463ec0,368,StoreInArrayLiteralIC -code-creation,Builtin,2,5084,0x101464040,28,StoreInArrayLiteralICBaseline -code-creation,Builtin,2,5084,0x101464060,172,LookupContextTrampoline -code-creation,Builtin,2,5084,0x101464120,184,LookupContextBaseline -code-creation,Builtin,2,5084,0x1014641e0,172,LookupContextInsideTypeofTrampoline -code-creation,Builtin,2,5084,0x1014642a0,184,LookupContextInsideTypeofBaseline -code-creation,Builtin,2,5084,0x101464360,3128,LoadGlobalIC -code-creation,Builtin,2,5084,0x101464fa0,3108,LoadGlobalICInsideTypeof -code-creation,Builtin,2,5084,0x101465be0,48,LoadGlobalICTrampoline -code-creation,Builtin,2,5084,0x101465c20,28,LoadGlobalICBaseline -code-creation,Builtin,2,5125,0x101465c40,48,LoadGlobalICInsideTypeofTrampoline -code-creation,Builtin,2,5125,0x101465c80,28,LoadGlobalICInsideTypeofBaseline -code-creation,Builtin,2,5125,0x101465ca0,152,LookupGlobalIC -code-creation,Builtin,2,5125,0x101465d40,192,LookupGlobalICTrampoline -code-creation,Builtin,2,5125,0x101465e20,176,LookupGlobalICBaseline -code-creation,Builtin,2,5125,0x101465ee0,152,LookupGlobalICInsideTypeof -code-creation,Builtin,2,5125,0x101465f80,192,LookupGlobalICInsideTypeofTrampoline -code-creation,Builtin,2,5125,0x101466060,176,LookupGlobalICInsideTypeofBaseline -code-creation,Builtin,2,5125,0x101466120,2616,CloneObjectIC -code-creation,Builtin,2,5125,0x101466b60,28,CloneObjectICBaseline -code-creation,Builtin,2,5125,0x101466b80,2860,CloneObjectIC_Slow -code-creation,Builtin,2,5167,0x1014676c0,2784,KeyedHasIC -code-creation,Builtin,2,5167,0x1014681c0,28,KeyedHasICBaseline -code-creation,Builtin,2,5167,0x1014681e0,3800,KeyedHasIC_Megamorphic -code-creation,Builtin,2,5167,0x1014690c0,1744,IterableToList -code-creation,Builtin,2,5167,0x1014697a0,1564,IterableToFixedArray -code-creation,Builtin,2,5167,0x101469dc0,772,IterableToListWithSymbolLookup -code-creation,Builtin,2,5167,0x10146a0e0,64,IterableToFixedArrayWithSymbolLookupSlow -code-creation,Builtin,2,5167,0x10146a140,120,IterableToListMayPreserveHoles -code-creation,Builtin,2,5167,0x10146a1c0,1264,IterableToFixedArrayForWasm -code-creation,Builtin,2,5167,0x10146a6c0,1676,StringListFromIterable -code-creation,Builtin,2,5209,0x10146ad60,1192,FindOrderedHashMapEntry -code-creation,Builtin,2,5209,0x10146b220,4264,MapConstructor -code-creation,Builtin,2,5209,0x10146c2e0,1972,MapPrototypeSet -code-creation,Builtin,2,5209,0x10146caa0,1532,MapPrototypeDelete -code-creation,Builtin,2,5209,0x10146d0a0,236,MapPrototypeGet -code-creation,Builtin,2,5209,0x10146d1a0,192,MapPrototypeHas -code-creation,Builtin,2,5209,0x10146d280,8,MapPrototypeClear -code-creation,Builtin,2,5209,0x10146d2a0,288,MapPrototypeEntries -code-creation,Builtin,2,5209,0x10146d3e0,160,MapPrototypeGetSize -code-creation,Builtin,2,5209,0x10146d4a0,528,MapPrototypeForEach -code-creation,Builtin,2,5209,0x10146d6c0,288,MapPrototypeKeys -code-creation,Builtin,2,5250,0x10146d800,288,MapPrototypeValues -code-creation,Builtin,2,5250,0x10146d940,868,MapIteratorPrototypeNext -code-creation,Builtin,2,5250,0x10146dcc0,1112,MapIteratorToList -code-creation,Builtin,2,5250,0x10146e120,8,NumberPrototypeToExponential -code-creation,Builtin,2,5250,0x10146e140,8,NumberPrototypeToFixed -code-creation,Builtin,2,5250,0x10146e160,8,NumberPrototypeToLocaleString -code-creation,Builtin,2,5250,0x10146e180,8,NumberPrototypeToPrecision -code-creation,Builtin,2,5250,0x10146e1a0,348,SameValue -code-creation,Builtin,2,5250,0x10146e300,184,SameValueNumbersOnly -code-creation,Builtin,2,5250,0x10146e3c0,1420,Add_Baseline -code-creation,Builtin,2,5250,0x10146e960,960,AddSmi_Baseline -code-creation,Builtin,2,5292,0x10146ed40,1420,Subtract_Baseline -code-creation,Builtin,2,5292,0x10146f2e0,1024,SubtractSmi_Baseline -code-creation,Builtin,2,5292,0x10146f700,1516,Multiply_Baseline -code-creation,Builtin,2,5292,0x10146fd00,1116,MultiplySmi_Baseline -code-creation,Builtin,2,5292,0x101470160,1564,Divide_Baseline -code-creation,Builtin,2,5292,0x101470780,1244,DivideSmi_Baseline -code-creation,Builtin,2,5292,0x101470c60,1472,Modulus_Baseline -code-creation,Builtin,2,5292,0x101471240,1100,ModulusSmi_Baseline -code-creation,Builtin,2,5292,0x1014716a0,708,Exponentiate_Baseline -code-creation,Builtin,2,5292,0x101471980,612,ExponentiateSmi_Baseline -code-creation,Builtin,2,5334,0x101471c00,1352,BitwiseAnd_Baseline -code-creation,Builtin,2,5334,0x101472160,340,BitwiseAndSmi_Baseline -code-creation,Builtin,2,5334,0x1014722c0,1352,BitwiseOr_Baseline -code-creation,Builtin,2,5334,0x101472820,340,BitwiseOrSmi_Baseline -code-creation,Builtin,2,5334,0x101472980,1352,BitwiseXor_Baseline -code-creation,Builtin,2,5334,0x101472ee0,340,BitwiseXorSmi_Baseline -code-creation,Builtin,2,5334,0x101473040,860,ShiftLeft_Baseline -code-creation,Builtin,2,5334,0x1014733a0,348,ShiftLeftSmi_Baseline -code-creation,Builtin,2,5334,0x101473500,860,ShiftRight_Baseline -code-creation,Builtin,2,5334,0x101473860,336,ShiftRightSmi_Baseline -code-creation,Builtin,2,5334,0x1014739c0,924,ShiftRightLogical_Baseline -code-creation,Builtin,2,5375,0x101473d60,584,ShiftRightLogicalSmi_Baseline -code-creation,Builtin,2,5375,0x101473fc0,1328,Add_WithFeedback -code-creation,Builtin,2,5375,0x101474500,1352,Subtract_WithFeedback -code-creation,Builtin,2,5375,0x101474a60,1440,Multiply_WithFeedback -code-creation,Builtin,2,5375,0x101475020,1476,Divide_WithFeedback -code-creation,Builtin,2,5375,0x101475600,1384,Modulus_WithFeedback -code-creation,Builtin,2,5375,0x101475b80,660,Exponentiate_WithFeedback -code-creation,Builtin,2,5375,0x101475e20,1292,BitwiseAnd_WithFeedback -code-creation,Builtin,2,5375,0x101476340,1292,BitwiseOr_WithFeedback -code-creation,Builtin,2,5375,0x101476860,1292,BitwiseXor_WithFeedback -code-creation,Builtin,2,5417,0x101476d80,816,ShiftLeft_WithFeedback -code-creation,Builtin,2,5417,0x1014770c0,816,ShiftRight_WithFeedback -code-creation,Builtin,2,5417,0x101477400,900,ShiftRightLogical_WithFeedback -code-creation,Builtin,2,5417,0x1014777a0,2016,Equal_Baseline -code-creation,Builtin,2,5417,0x101477fa0,1028,StrictEqual_Baseline -code-creation,Builtin,2,5417,0x1014783c0,1368,LessThan_Baseline -code-creation,Builtin,2,5417,0x101478920,1368,GreaterThan_Baseline -code-creation,Builtin,2,5417,0x101478e80,1368,LessThanOrEqual_Baseline -code-creation,Builtin,2,5417,0x1014793e0,1368,GreaterThanOrEqual_Baseline -code-creation,Builtin,2,5417,0x101479940,2020,Equal_WithFeedback -code-creation,Builtin,2,5459,0x10147a140,1012,StrictEqual_WithFeedback -code-creation,Builtin,2,5459,0x10147a540,1336,LessThan_WithFeedback -code-creation,Builtin,2,5459,0x10147aa80,1336,GreaterThan_WithFeedback -code-creation,Builtin,2,5459,0x10147afc0,1336,LessThanOrEqual_WithFeedback -code-creation,Builtin,2,5459,0x10147b500,1336,GreaterThanOrEqual_WithFeedback -code-creation,Builtin,2,5459,0x10147ba40,328,BitwiseNot_Baseline -code-creation,Builtin,2,5459,0x10147bba0,460,Decrement_Baseline -code-creation,Builtin,2,5459,0x10147bd80,460,Increment_Baseline -code-creation,Builtin,2,5459,0x10147bf60,480,Negate_Baseline -code-creation,Builtin,2,5459,0x10147c160,304,BitwiseNot_WithFeedback -code-creation,Builtin,2,5459,0x10147c2a0,436,Decrement_WithFeedback -code-creation,Builtin,2,5500,0x10147c460,436,Increment_WithFeedback -code-creation,Builtin,2,5500,0x10147c620,456,Negate_WithFeedback -code-creation,Builtin,2,5500,0x10147c800,292,ObjectAssign -code-creation,Builtin,2,5500,0x10147c940,900,ObjectCreate -code-creation,Builtin,2,5500,0x10147cce0,8,ObjectDefineGetter -code-creation,Builtin,2,5500,0x10147cd00,8,ObjectDefineProperties -code-creation,Builtin,2,5500,0x10147cd20,8,ObjectDefineProperty -code-creation,Builtin,2,5500,0x10147cd40,8,ObjectDefineSetter -code-creation,Builtin,2,5500,0x10147cd60,1484,ObjectEntries -code-creation,Builtin,2,5500,0x10147d340,8,ObjectFreeze -code-creation,Builtin,2,5542,0x10147d360,4524,ObjectGetOwnPropertyDescriptor -code-creation,Builtin,2,5542,0x10147e520,8,ObjectGetOwnPropertyDescriptors -code-creation,Builtin,2,5542,0x10147e540,620,ObjectGetOwnPropertyNames -code-creation,Builtin,2,5542,0x10147e7c0,8,ObjectGetOwnPropertySymbols -code-creation,Builtin,2,5542,0x10147e7e0,208,ObjectHasOwn -code-creation,Builtin,2,5542,0x10147e8c0,400,ObjectIs -code-creation,Builtin,2,5542,0x10147ea60,8,ObjectIsFrozen -code-creation,Builtin,2,5542,0x10147ea80,8,ObjectIsSealed -code-creation,Builtin,2,5542,0x10147eaa0,560,ObjectKeys -code-creation,Builtin,2,5542,0x10147ece0,8,ObjectLookupGetter -code-creation,Builtin,2,5542,0x10147ed00,8,ObjectLookupSetter -code-creation,Builtin,2,5584,0x10147ed20,2920,ObjectPrototypeHasOwnProperty -code-creation,Builtin,2,5584,0x10147f8a0,268,ObjectPrototypeIsPrototypeOf -code-creation,Builtin,2,5584,0x10147f9c0,8,ObjectPrototypePropertyIsEnumerable -code-creation,Builtin,2,5584,0x10147f9e0,8,ObjectPrototypeGetProto -code-creation,Builtin,2,5584,0x10147fa00,8,ObjectPrototypeSetProto -code-creation,Builtin,2,5584,0x10147fa20,8,ObjectSeal -code-creation,Builtin,2,5584,0x10147fa40,1328,ObjectToString -code-creation,Builtin,2,5584,0x10147ff80,1240,ObjectValues -code-creation,Builtin,2,5584,0x101480460,416,OrdinaryHasInstance -code-creation,Builtin,2,5584,0x101480620,432,InstanceOf -code-creation,Builtin,2,5625,0x1014807e0,664,InstanceOf_WithFeedback -code-creation,Builtin,2,5625,0x101480a80,676,InstanceOf_Baseline -code-creation,Builtin,2,5625,0x101480d40,280,ForInEnumerate -code-creation,Builtin,2,5625,0x101480e60,144,ForInPrepare -code-creation,Builtin,2,5625,0x101480f00,3760,ForInFilter -code-creation,Builtin,2,5625,0x101481dc0,68,ReflectApply -code-creation,Builtin,2,5625,0x101481e20,72,ReflectConstruct -code-creation,Builtin,2,5625,0x101481e80,8,ReflectDefineProperty -code-creation,Builtin,2,5625,0x101481ea0,8,ReflectOwnKeys -code-creation,Builtin,2,5625,0x101481ec0,8,ReflectSet -code-creation,Builtin,2,5625,0x101481ee0,8,RegExpCapture1Getter -code-creation,Builtin,2,5667,0x101481f00,8,RegExpCapture2Getter -code-creation,Builtin,2,5667,0x101481f20,8,RegExpCapture3Getter -code-creation,Builtin,2,5667,0x101481f40,8,RegExpCapture4Getter -code-creation,Builtin,2,5667,0x101481f60,8,RegExpCapture5Getter -code-creation,Builtin,2,5667,0x101481f80,8,RegExpCapture6Getter -code-creation,Builtin,2,5667,0x101481fa0,8,RegExpCapture7Getter -code-creation,Builtin,2,5667,0x101481fc0,8,RegExpCapture8Getter -code-creation,Builtin,2,5667,0x101481fe0,8,RegExpCapture9Getter -code-creation,Builtin,2,5667,0x101482000,2252,RegExpConstructor -code-creation,Builtin,2,5667,0x1014828e0,8,RegExpInputGetter -code-creation,Builtin,2,5667,0x101482900,8,RegExpInputSetter -code-creation,Builtin,2,5709,0x101482920,8,RegExpLastMatchGetter -code-creation,Builtin,2,5709,0x101482940,8,RegExpLastParenGetter -code-creation,Builtin,2,5709,0x101482960,8,RegExpLeftContextGetter -code-creation,Builtin,2,5709,0x101482980,852,RegExpPrototypeCompile -code-creation,Builtin,2,5709,0x101482ce0,8,RegExpPrototypeToString -code-creation,Builtin,2,5709,0x101482d00,8,RegExpRightContextGetter -code-creation,Builtin,2,5709,0x101482d20,240,RegExpExecAtom -code-creation,Builtin,2,5709,0x101482e20,1028,RegExpExecInternal -code-creation,Builtin,2,5709,0x101483240,8,RegExpInterpreterTrampoline -code-creation,Builtin,2,5709,0x101483260,8,RegExpExperimentalTrampoline -code-creation,Builtin,2,5709,0x101483280,1188,FindOrderedHashSetEntry -code-creation,Builtin,2,5750,0x101483740,2984,SetConstructor -code-creation,Builtin,2,5750,0x101484300,192,SetPrototypeHas -code-creation,Builtin,2,5750,0x1014843e0,1772,SetPrototypeAdd -code-creation,Builtin,2,5750,0x101484ae0,1500,SetPrototypeDelete -code-creation,Builtin,2,5750,0x1014850c0,8,SetPrototypeClear -code-creation,Builtin,2,5750,0x1014850e0,288,SetPrototypeEntries -code-creation,Builtin,2,5750,0x101485220,160,SetPrototypeGetSize -code-creation,Builtin,2,5750,0x1014852e0,500,SetPrototypeForEach -code-creation,Builtin,2,5750,0x1014854e0,288,SetPrototypeValues -code-creation,Builtin,2,5750,0x101485620,800,SetIteratorPrototypeNext -code-creation,Builtin,2,5750,0x101485960,1068,SetOrSetIteratorToList -code-creation,Builtin,2,5792,0x101485da0,8,ShadowRealmConstructor -code-creation,Builtin,2,5792,0x101485dc0,676,ShadowRealmGetWrappedValue -code-creation,Builtin,2,5792,0x101486080,8,ShadowRealmPrototypeEvaluate -code-creation,Builtin,2,5792,0x1014860a0,1340,ShadowRealmPrototypeImportValue -code-creation,Builtin,2,5792,0x1014865e0,276,ShadowRealmImportValueFulfilled -code-creation,Builtin,2,5792,0x101486700,88,ShadowRealmImportValueRejected -code-creation,Builtin,2,5792,0x101486760,8,SharedArrayBufferPrototypeGetByteLength -code-creation,Builtin,2,5792,0x101486780,8,SharedArrayBufferPrototypeSlice -code-creation,Builtin,2,5792,0x1014867a0,8,SharedArrayBufferPrototypeGrow -code-creation,Builtin,2,5834,0x1014867c0,2028,AtomicsLoad -code-creation,Builtin,2,5834,0x101486fc0,2160,AtomicsStore -code-creation,Builtin,2,5834,0x101487840,2756,AtomicsExchange -code-creation,Builtin,2,5834,0x101488320,2980,AtomicsCompareExchange -code-creation,Builtin,2,5834,0x101488ee0,2624,AtomicsAdd -code-creation,Builtin,2,5834,0x101489940,2656,AtomicsSub -code-creation,Builtin,2,5834,0x10148a3c0,2656,AtomicsAnd -code-creation,Builtin,2,5834,0x10148ae40,2624,AtomicsOr -code-creation,Builtin,2,5834,0x10148b8a0,2624,AtomicsXor -code-creation,Builtin,2,5834,0x10148c300,8,AtomicsNotify -code-creation,Builtin,2,5834,0x10148c320,8,AtomicsIsLockFree -code-creation,Builtin,2,5875,0x10148c340,8,AtomicsWait -code-creation,Builtin,2,5875,0x10148c360,8,AtomicsWaitAsync -code-creation,Builtin,2,5875,0x10148c380,8,StringFromCodePoint -code-creation,Builtin,2,5875,0x10148c3a0,1336,StringFromCharCode -code-creation,Builtin,2,5875,0x10148c8e0,8,StringPrototypeLastIndexOf -code-creation,Builtin,2,5875,0x10148c900,4376,StringPrototypeMatchAll -code-creation,Builtin,2,5875,0x10148da20,8,StringPrototypeLocaleCompare -code-creation,Builtin,2,5875,0x10148da40,1276,StringPrototypeReplace -code-creation,Builtin,2,5875,0x10148df40,2580,StringPrototypeSplit -code-creation,Builtin,2,5875,0x10148e960,8,StringRaw -code-creation,Builtin,2,5875,0x10148e980,8,SymbolConstructor -code-creation,Builtin,2,5917,0x10148e9a0,8,SymbolFor -code-creation,Builtin,2,5917,0x10148e9c0,8,SymbolKeyFor -code-creation,Builtin,2,5917,0x10148e9e0,96,TypedArrayBaseConstructor -code-creation,Builtin,2,5917,0x10148ea60,304,TypedArrayConstructor -code-creation,Builtin,2,5917,0x10148eba0,8,TypedArrayPrototypeBuffer -code-creation,Builtin,2,5917,0x10148ebc0,868,TypedArrayPrototypeByteLength -code-creation,Builtin,2,5917,0x10148ef40,328,TypedArrayPrototypeByteOffset -code-creation,Builtin,2,5917,0x10148f0a0,588,TypedArrayPrototypeLength -code-creation,Builtin,2,5917,0x10148f300,8,TypedArrayPrototypeCopyWithin -code-creation,Builtin,2,5917,0x10148f320,8,TypedArrayPrototypeFill -code-creation,Builtin,2,5917,0x10148f340,8,TypedArrayPrototypeIncludes -code-creation,Builtin,2,5959,0x10148f360,8,TypedArrayPrototypeIndexOf -code-creation,Builtin,2,5959,0x10148f380,8,TypedArrayPrototypeLastIndexOf -code-creation,Builtin,2,5959,0x10148f3a0,8,TypedArrayPrototypeReverse -code-creation,Builtin,2,5959,0x10148f3c0,452,TypedArrayPrototypeToStringTag -code-creation,Builtin,2,5959,0x10148f5a0,22108,TypedArrayPrototypeMap -code-creation,Builtin,2,5959,0x101494c00,1004,GenericJSToWasmWrapper -code-creation,Builtin,2,5959,0x101495000,1260,WasmReturnPromiseOnSuspend -code-creation,Builtin,2,5959,0x101495500,184,WasmSuspend -code-creation,Builtin,2,5959,0x1014955c0,308,WasmResume -code-creation,Builtin,2,5959,0x101495700,316,WasmReject -code-creation,Builtin,2,5959,0x101495840,132,WasmCompileLazy -code-creation,Builtin,2,6000,0x1014958e0,148,WasmLiftoffFrameSetup -code-creation,Builtin,2,6000,0x101495980,260,WasmDebugBreak -code-creation,Builtin,2,6000,0x101495aa0,4,WasmOnStackReplace -code-creation,Builtin,2,6000,0x101495ac0,152,WasmFloat32ToNumber -code-creation,Builtin,2,6000,0x101495b60,156,WasmFloat64ToNumber -code-creation,Builtin,2,6000,0x101495c00,24,JSToWasmLazyDeoptContinuation -code-creation,Builtin,2,6000,0x101495c20,4540,WeakMapConstructor -code-creation,Builtin,2,6000,0x101496de0,276,WeakMapLookupHashIndex -code-creation,Builtin,2,6000,0x101496f00,244,WeakMapGet -code-creation,Builtin,2,6000,0x101497000,204,WeakMapPrototypeHas -code-creation,Builtin,2,6000,0x1014970e0,276,WeakMapPrototypeSet -code-creation,Builtin,2,6042,0x101497200,192,WeakMapPrototypeDelete -code-creation,Builtin,2,6042,0x1014972e0,3184,WeakSetConstructor -code-creation,Builtin,2,6042,0x101497f60,204,WeakSetPrototypeHas -code-creation,Builtin,2,6042,0x101498040,276,WeakSetPrototypeAdd -code-creation,Builtin,2,6042,0x101498160,192,WeakSetPrototypeDelete -code-creation,Builtin,2,6042,0x101498240,488,WeakCollectionDelete -code-creation,Builtin,2,6042,0x101498440,748,WeakCollectionSet -code-creation,Builtin,2,6042,0x101498740,8,SharedStructTypeConstructor -code-creation,Builtin,2,6042,0x101498760,8,SharedStructConstructor -code-creation,Builtin,2,6084,0x101498780,8,SharedArrayConstructor -code-creation,Builtin,2,6084,0x1014987a0,8,AtomicsMutexConstructor -code-creation,Builtin,2,6084,0x1014987c0,8,AtomicsMutexLock -code-creation,Builtin,2,6084,0x1014987e0,8,AtomicsMutexTryLock -code-creation,Builtin,2,6084,0x101498800,8,AtomicsConditionConstructor -code-creation,Builtin,2,6084,0x101498820,8,AtomicsConditionWait -code-creation,Builtin,2,6084,0x101498840,8,AtomicsConditionNotify -code-creation,Builtin,2,6084,0x101498860,300,AsyncGeneratorResolve -code-creation,Builtin,2,6084,0x1014989a0,108,AsyncGeneratorReject -code-creation,Builtin,2,6084,0x101498a20,1564,AsyncGeneratorYieldWithAwait -code-creation,Builtin,2,6084,0x101499040,1840,AsyncGeneratorReturn -code-creation,Builtin,2,6125,0x101499780,376,AsyncGeneratorResumeNext -code-creation,Builtin,2,6125,0x101499900,8,AsyncGeneratorFunctionConstructor -code-creation,Builtin,2,6125,0x101499920,964,AsyncGeneratorPrototypeNext -code-creation,Builtin,2,6125,0x101499d00,964,AsyncGeneratorPrototypeReturn -code-creation,Builtin,2,6125,0x10149a0e0,964,AsyncGeneratorPrototypeThrow -code-creation,Builtin,2,6125,0x10149a4c0,1540,AsyncGeneratorAwaitCaught -code-creation,Builtin,2,6125,0x10149aae0,1540,AsyncGeneratorAwaitUncaught -code-creation,Builtin,2,6125,0x10149b100,184,AsyncGeneratorAwaitResolveClosure -code-creation,Builtin,2,6125,0x10149b1c0,184,AsyncGeneratorAwaitRejectClosure -code-creation,Builtin,2,6125,0x10149b280,124,AsyncGeneratorYieldWithAwaitResolveClosure -code-creation,Builtin,2,6167,0x10149b300,124,AsyncGeneratorReturnClosedResolveClosure -code-creation,Builtin,2,6167,0x10149b380,120,AsyncGeneratorReturnClosedRejectClosure -code-creation,Builtin,2,6167,0x10149b400,188,AsyncGeneratorReturnResolveClosure -code-creation,Builtin,2,6167,0x10149b4c0,1632,AsyncFromSyncIteratorPrototypeNext -code-creation,Builtin,2,6167,0x10149bb40,1744,AsyncFromSyncIteratorPrototypeThrow -code-creation,Builtin,2,6167,0x10149c220,1776,AsyncFromSyncIteratorPrototypeReturn -code-creation,Builtin,2,6167,0x10149c920,128,AsyncIteratorValueUnwrap -code-creation,Builtin,2,6167,0x10149c9c0,248,CEntry_Return1_ArgvInRegister_NoBuiltinExit -code-creation,Builtin,2,6167,0x10149cac0,268,CEntry_Return1_ArgvOnStack_BuiltinExit -code-creation,Builtin,2,6209,0x10149cbe0,268,CEntry_Return1_ArgvOnStack_NoBuiltinExit -code-creation,Builtin,2,6209,0x10149cd00,248,CEntry_Return2_ArgvInRegister_NoBuiltinExit -code-creation,Builtin,2,6209,0x10149ce00,268,CEntry_Return2_ArgvOnStack_BuiltinExit -code-creation,Builtin,2,6209,0x10149cf20,268,CEntry_Return2_ArgvOnStack_NoBuiltinExit -code-creation,Builtin,2,6209,0x10149d040,16,DirectCEntry -code-creation,Builtin,2,6209,0x10149d060,1432,StringAdd_CheckNone -code-creation,Builtin,2,6209,0x10149d600,2720,SubString -code-creation,Builtin,2,6209,0x10149e0c0,80,DoubleToI -code-creation,Builtin,2,6209,0x10149e120,3348,GetProperty -code-creation,Builtin,2,6209,0x10149ee40,3456,GetPropertyWithReceiver -code-creation,Builtin,2,6209,0x10149fbe0,15952,SetProperty -code-creation,Builtin,2,6250,0x1014a3a40,13056,CreateDataProperty -code-creation,Builtin,2,6250,0x1014a6d60,48,GetOwnPropertyDescriptor -code-creation,Builtin,2,6250,0x1014a6da0,4,MemCopyUint8Uint8 -code-creation,Builtin,2,6250,0x1014a6dc0,4,MemMove -code-creation,Builtin,2,6250,0x1014a6de0,196,FindNonDefaultConstructorOrConstruct -code-creation,Builtin,2,6250,0x1014a6ec0,2576,OrdinaryGetOwnPropertyDescriptor -code-creation,Builtin,2,6250,0x1014a78e0,8,IsTraceCategoryEnabled -code-creation,Builtin,2,6250,0x1014a7900,8,Trace -code-creation,Builtin,2,6250,0x1014a7920,8,FinalizationRegistryUnregister -code-creation,Builtin,2,6292,0x1014a7940,440,AsyncModuleEvaluate -code-creation,Builtin,2,6292,0x1014a7b00,8,CallAsyncModuleFulfilled -code-creation,Builtin,2,6292,0x1014a7b20,8,CallAsyncModuleRejected -code-creation,Builtin,2,6292,0x1014a7b40,8,TemporalNowTimeZone -code-creation,Builtin,2,6292,0x1014a7b60,8,TemporalNowInstant -code-creation,Builtin,2,6292,0x1014a7b80,8,TemporalNowPlainDateTime -code-creation,Builtin,2,6292,0x1014a7ba0,8,TemporalNowPlainDateTimeISO -code-creation,Builtin,2,6292,0x1014a7bc0,8,TemporalNowZonedDateTime -code-creation,Builtin,2,6292,0x1014a7be0,8,TemporalNowZonedDateTimeISO -code-creation,Builtin,2,6334,0x1014a7c00,8,TemporalNowPlainDate -code-creation,Builtin,2,6334,0x1014a7c20,8,TemporalNowPlainDateISO -code-creation,Builtin,2,6334,0x1014a7c40,8,TemporalNowPlainTimeISO -code-creation,Builtin,2,6334,0x1014a7c60,8,TemporalPlainDateConstructor -code-creation,Builtin,2,6334,0x1014a7c80,8,TemporalPlainDateFrom -code-creation,Builtin,2,6334,0x1014a7ca0,8,TemporalPlainDateCompare -code-creation,Builtin,2,6334,0x1014a7cc0,8,TemporalPlainDatePrototypeCalendar -code-creation,Builtin,2,6334,0x1014a7ce0,8,TemporalPlainDatePrototypeYear -code-creation,Builtin,2,6334,0x1014a7d00,8,TemporalPlainDatePrototypeMonth -code-creation,Builtin,2,6334,0x1014a7d20,8,TemporalPlainDatePrototypeMonthCode -code-creation,Builtin,2,6375,0x1014a7d40,8,TemporalPlainDatePrototypeDay -code-creation,Builtin,2,6375,0x1014a7d60,8,TemporalPlainDatePrototypeDayOfWeek -code-creation,Builtin,2,6375,0x1014a7d80,8,TemporalPlainDatePrototypeDayOfYear -code-creation,Builtin,2,6375,0x1014a7da0,8,TemporalPlainDatePrototypeWeekOfYear -code-creation,Builtin,2,6375,0x1014a7dc0,8,TemporalPlainDatePrototypeDaysInWeek -code-creation,Builtin,2,6375,0x1014a7de0,8,TemporalPlainDatePrototypeDaysInMonth -code-creation,Builtin,2,6375,0x1014a7e00,8,TemporalPlainDatePrototypeDaysInYear -code-creation,Builtin,2,6375,0x1014a7e20,8,TemporalPlainDatePrototypeMonthsInYear -code-creation,Builtin,2,6375,0x1014a7e40,8,TemporalPlainDatePrototypeInLeapYear -code-creation,Builtin,2,6417,0x1014a7e60,8,TemporalPlainDatePrototypeToPlainYearMonth -code-creation,Builtin,2,6417,0x1014a7e80,8,TemporalPlainDatePrototypeToPlainMonthDay -code-creation,Builtin,2,6417,0x1014a7ea0,8,TemporalPlainDatePrototypeGetISOFields -code-creation,Builtin,2,6417,0x1014a7ec0,8,TemporalPlainDatePrototypeAdd -code-creation,Builtin,2,6417,0x1014a7ee0,8,TemporalPlainDatePrototypeSubtract -code-creation,Builtin,2,6417,0x1014a7f00,8,TemporalPlainDatePrototypeWith -code-creation,Builtin,2,6417,0x1014a7f20,8,TemporalPlainDatePrototypeWithCalendar -code-creation,Builtin,2,6417,0x1014a7f40,8,TemporalPlainDatePrototypeUntil -code-creation,Builtin,2,6417,0x1014a7f60,8,TemporalPlainDatePrototypeSince -code-creation,Builtin,2,6417,0x1014a7f80,8,TemporalPlainDatePrototypeEquals -code-creation,Builtin,2,6459,0x1014a7fa0,8,TemporalPlainDatePrototypeToPlainDateTime -code-creation,Builtin,2,6459,0x1014a7fc0,8,TemporalPlainDatePrototypeToZonedDateTime -code-creation,Builtin,2,6459,0x1014a7fe0,8,TemporalPlainDatePrototypeToString -code-creation,Builtin,2,6459,0x1014a8000,8,TemporalPlainDatePrototypeToJSON -code-creation,Builtin,2,6459,0x1014a8020,8,TemporalPlainDatePrototypeToLocaleString -code-creation,Builtin,2,6459,0x1014a8040,8,TemporalPlainDatePrototypeValueOf -code-creation,Builtin,2,6459,0x1014a8060,8,TemporalPlainTimeConstructor -code-creation,Builtin,2,6459,0x1014a8080,8,TemporalPlainTimeFrom -code-creation,Builtin,2,6459,0x1014a80a0,8,TemporalPlainTimeCompare -code-creation,Builtin,2,6500,0x1014a80c0,8,TemporalPlainTimePrototypeCalendar -code-creation,Builtin,2,6500,0x1014a80e0,8,TemporalPlainTimePrototypeHour -code-creation,Builtin,2,6500,0x1014a8100,8,TemporalPlainTimePrototypeMinute -code-creation,Builtin,2,6500,0x1014a8120,8,TemporalPlainTimePrototypeSecond -code-creation,Builtin,2,6500,0x1014a8140,8,TemporalPlainTimePrototypeMillisecond -code-creation,Builtin,2,6500,0x1014a8160,8,TemporalPlainTimePrototypeMicrosecond -code-creation,Builtin,2,6500,0x1014a8180,8,TemporalPlainTimePrototypeNanosecond -code-creation,Builtin,2,6500,0x1014a81a0,8,TemporalPlainTimePrototypeAdd -code-creation,Builtin,2,6500,0x1014a81c0,8,TemporalPlainTimePrototypeSubtract -code-creation,Builtin,2,6500,0x1014a81e0,8,TemporalPlainTimePrototypeWith -code-creation,Builtin,2,6542,0x1014a8200,8,TemporalPlainTimePrototypeUntil -code-creation,Builtin,2,6542,0x1014a8220,8,TemporalPlainTimePrototypeSince -code-creation,Builtin,2,6542,0x1014a8240,8,TemporalPlainTimePrototypeRound -code-creation,Builtin,2,6542,0x1014a8260,8,TemporalPlainTimePrototypeEquals -code-creation,Builtin,2,6542,0x1014a8280,8,TemporalPlainTimePrototypeToPlainDateTime -code-creation,Builtin,2,6542,0x1014a82a0,8,TemporalPlainTimePrototypeToZonedDateTime -code-creation,Builtin,2,6542,0x1014a82c0,8,TemporalPlainTimePrototypeGetISOFields -code-creation,Builtin,2,6542,0x1014a82e0,8,TemporalPlainTimePrototypeToString -code-creation,Builtin,2,6542,0x1014a8300,8,TemporalPlainTimePrototypeToJSON -code-creation,Builtin,2,6584,0x1014a8320,8,TemporalPlainTimePrototypeToLocaleString -code-creation,Builtin,2,6584,0x1014a8340,8,TemporalPlainTimePrototypeValueOf -code-creation,Builtin,2,6584,0x1014a8360,8,TemporalPlainDateTimeConstructor -code-creation,Builtin,2,6584,0x1014a8380,8,TemporalPlainDateTimeFrom -code-creation,Builtin,2,6584,0x1014a83a0,8,TemporalPlainDateTimeCompare -code-creation,Builtin,2,6584,0x1014a83c0,8,TemporalPlainDateTimePrototypeCalendar -code-creation,Builtin,2,6584,0x1014a83e0,8,TemporalPlainDateTimePrototypeYear -code-creation,Builtin,2,6584,0x1014a8400,8,TemporalPlainDateTimePrototypeMonth -code-creation,Builtin,2,6584,0x1014a8420,8,TemporalPlainDateTimePrototypeMonthCode -code-creation,Builtin,2,6625,0x1014a8440,8,TemporalPlainDateTimePrototypeDay -code-creation,Builtin,2,6625,0x1014a8460,8,TemporalPlainDateTimePrototypeHour -code-creation,Builtin,2,6625,0x1014a8480,8,TemporalPlainDateTimePrototypeMinute -code-creation,Builtin,2,6625,0x1014a84a0,8,TemporalPlainDateTimePrototypeSecond -code-creation,Builtin,2,6625,0x1014a84c0,8,TemporalPlainDateTimePrototypeMillisecond -code-creation,Builtin,2,6625,0x1014a84e0,8,TemporalPlainDateTimePrototypeMicrosecond -code-creation,Builtin,2,6625,0x1014a8500,8,TemporalPlainDateTimePrototypeNanosecond -code-creation,Builtin,2,6625,0x1014a8520,8,TemporalPlainDateTimePrototypeDayOfWeek -code-creation,Builtin,2,6625,0x1014a8540,8,TemporalPlainDateTimePrototypeDayOfYear -code-creation,Builtin,2,6625,0x1014a8560,8,TemporalPlainDateTimePrototypeWeekOfYear -code-creation,Builtin,2,6667,0x1014a8580,8,TemporalPlainDateTimePrototypeDaysInWeek -code-creation,Builtin,2,6667,0x1014a85a0,8,TemporalPlainDateTimePrototypeDaysInMonth -code-creation,Builtin,2,6667,0x1014a85c0,8,TemporalPlainDateTimePrototypeDaysInYear -code-creation,Builtin,2,6667,0x1014a85e0,8,TemporalPlainDateTimePrototypeMonthsInYear -code-creation,Builtin,2,6667,0x1014a8600,8,TemporalPlainDateTimePrototypeInLeapYear -code-creation,Builtin,2,6667,0x1014a8620,8,TemporalPlainDateTimePrototypeWith -code-creation,Builtin,2,6667,0x1014a8640,8,TemporalPlainDateTimePrototypeWithPlainTime -code-creation,Builtin,2,6667,0x1014a8660,8,TemporalPlainDateTimePrototypeWithPlainDate -code-creation,Builtin,2,6667,0x1014a8680,8,TemporalPlainDateTimePrototypeWithCalendar -code-creation,Builtin,2,6709,0x1014a86a0,8,TemporalPlainDateTimePrototypeAdd -code-creation,Builtin,2,6709,0x1014a86c0,8,TemporalPlainDateTimePrototypeSubtract -code-creation,Builtin,2,6709,0x1014a86e0,8,TemporalPlainDateTimePrototypeUntil -code-creation,Builtin,2,6709,0x1014a8700,8,TemporalPlainDateTimePrototypeSince -code-creation,Builtin,2,6709,0x1014a8720,8,TemporalPlainDateTimePrototypeRound -code-creation,Builtin,2,6709,0x1014a8740,8,TemporalPlainDateTimePrototypeEquals -code-creation,Builtin,2,6709,0x1014a8760,8,TemporalPlainDateTimePrototypeToString -code-creation,Builtin,2,6709,0x1014a8780,8,TemporalPlainDateTimePrototypeToJSON -code-creation,Builtin,2,6709,0x1014a87a0,8,TemporalPlainDateTimePrototypeToLocaleString -code-creation,Builtin,2,6750,0x1014a87c0,8,TemporalPlainDateTimePrototypeValueOf -code-creation,Builtin,2,6750,0x1014a87e0,8,TemporalPlainDateTimePrototypeToZonedDateTime -code-creation,Builtin,2,6750,0x1014a8800,8,TemporalPlainDateTimePrototypeToPlainDate -code-creation,Builtin,2,6750,0x1014a8820,8,TemporalPlainDateTimePrototypeToPlainYearMonth -code-creation,Builtin,2,6750,0x1014a8840,8,TemporalPlainDateTimePrototypeToPlainMonthDay -code-creation,Builtin,2,6750,0x1014a8860,8,TemporalPlainDateTimePrototypeToPlainTime -code-creation,Builtin,2,6750,0x1014a8880,8,TemporalPlainDateTimePrototypeGetISOFields -code-creation,Builtin,2,6750,0x1014a88a0,8,TemporalZonedDateTimeConstructor -code-creation,Builtin,2,6750,0x1014a88c0,8,TemporalZonedDateTimeFrom -code-creation,Builtin,2,6792,0x1014a88e0,8,TemporalZonedDateTimeCompare -code-creation,Builtin,2,6792,0x1014a8900,8,TemporalZonedDateTimePrototypeCalendar -code-creation,Builtin,2,6792,0x1014a8920,8,TemporalZonedDateTimePrototypeTimeZone -code-creation,Builtin,2,6792,0x1014a8940,8,TemporalZonedDateTimePrototypeYear -code-creation,Builtin,2,6792,0x1014a8960,8,TemporalZonedDateTimePrototypeMonth -code-creation,Builtin,2,6792,0x1014a8980,8,TemporalZonedDateTimePrototypeMonthCode -code-creation,Builtin,2,6792,0x1014a89a0,8,TemporalZonedDateTimePrototypeDay -code-creation,Builtin,2,6792,0x1014a89c0,8,TemporalZonedDateTimePrototypeHour -code-creation,Builtin,2,6792,0x1014a89e0,8,TemporalZonedDateTimePrototypeMinute -code-creation,Builtin,2,6834,0x1014a8a00,8,TemporalZonedDateTimePrototypeSecond -code-creation,Builtin,2,6834,0x1014a8a20,8,TemporalZonedDateTimePrototypeMillisecond -code-creation,Builtin,2,6834,0x1014a8a40,8,TemporalZonedDateTimePrototypeMicrosecond -code-creation,Builtin,2,6834,0x1014a8a60,8,TemporalZonedDateTimePrototypeNanosecond -code-creation,Builtin,2,6834,0x1014a8a80,8,TemporalZonedDateTimePrototypeEpochSeconds -code-creation,Builtin,2,6834,0x1014a8aa0,8,TemporalZonedDateTimePrototypeEpochMilliseconds -code-creation,Builtin,2,6834,0x1014a8ac0,8,TemporalZonedDateTimePrototypeEpochMicroseconds -code-creation,Builtin,2,6834,0x1014a8ae0,8,TemporalZonedDateTimePrototypeEpochNanoseconds -code-creation,Builtin,2,6834,0x1014a8b00,8,TemporalZonedDateTimePrototypeDayOfWeek -code-creation,Builtin,2,6875,0x1014a8b20,8,TemporalZonedDateTimePrototypeDayOfYear -code-creation,Builtin,2,6875,0x1014a8b40,8,TemporalZonedDateTimePrototypeWeekOfYear -code-creation,Builtin,2,6875,0x1014a8b60,8,TemporalZonedDateTimePrototypeHoursInDay -code-creation,Builtin,2,6875,0x1014a8b80,8,TemporalZonedDateTimePrototypeDaysInWeek -code-creation,Builtin,2,6875,0x1014a8ba0,8,TemporalZonedDateTimePrototypeDaysInMonth -code-creation,Builtin,2,6875,0x1014a8bc0,8,TemporalZonedDateTimePrototypeDaysInYear -code-creation,Builtin,2,6875,0x1014a8be0,8,TemporalZonedDateTimePrototypeMonthsInYear -code-creation,Builtin,2,6875,0x1014a8c00,8,TemporalZonedDateTimePrototypeInLeapYear -code-creation,Builtin,2,6875,0x1014a8c20,8,TemporalZonedDateTimePrototypeOffsetNanoseconds -code-creation,Builtin,2,6917,0x1014a8c40,8,TemporalZonedDateTimePrototypeOffset -code-creation,Builtin,2,6917,0x1014a8c60,8,TemporalZonedDateTimePrototypeWith -code-creation,Builtin,2,6917,0x1014a8c80,8,TemporalZonedDateTimePrototypeWithPlainTime -code-creation,Builtin,2,6917,0x1014a8ca0,8,TemporalZonedDateTimePrototypeWithPlainDate -code-creation,Builtin,2,6917,0x1014a8cc0,8,TemporalZonedDateTimePrototypeWithTimeZone -code-creation,Builtin,2,6917,0x1014a8ce0,8,TemporalZonedDateTimePrototypeWithCalendar -code-creation,Builtin,2,6917,0x1014a8d00,8,TemporalZonedDateTimePrototypeAdd -code-creation,Builtin,2,6917,0x1014a8d20,8,TemporalZonedDateTimePrototypeSubtract -code-creation,Builtin,2,6917,0x1014a8d40,8,TemporalZonedDateTimePrototypeUntil -code-creation,Builtin,2,6917,0x1014a8d60,8,TemporalZonedDateTimePrototypeSince -code-creation,Builtin,2,6959,0x1014a8d80,8,TemporalZonedDateTimePrototypeRound -code-creation,Builtin,2,6959,0x1014a8da0,8,TemporalZonedDateTimePrototypeEquals -code-creation,Builtin,2,6959,0x1014a8dc0,8,TemporalZonedDateTimePrototypeToString -code-creation,Builtin,2,6959,0x1014a8de0,8,TemporalZonedDateTimePrototypeToJSON -code-creation,Builtin,2,6959,0x1014a8e00,8,TemporalZonedDateTimePrototypeToLocaleString -code-creation,Builtin,2,6959,0x1014a8e20,8,TemporalZonedDateTimePrototypeValueOf -code-creation,Builtin,2,6959,0x1014a8e40,8,TemporalZonedDateTimePrototypeStartOfDay -code-creation,Builtin,2,6959,0x1014a8e60,8,TemporalZonedDateTimePrototypeToInstant -code-creation,Builtin,2,6959,0x1014a8e80,8,TemporalZonedDateTimePrototypeToPlainDate -code-creation,Builtin,2,7000,0x1014a8ea0,8,TemporalZonedDateTimePrototypeToPlainTime -code-creation,Builtin,2,7000,0x1014a8ec0,8,TemporalZonedDateTimePrototypeToPlainDateTime -code-creation,Builtin,2,7000,0x1014a8ee0,8,TemporalZonedDateTimePrototypeToPlainYearMonth -code-creation,Builtin,2,7000,0x1014a8f00,8,TemporalZonedDateTimePrototypeToPlainMonthDay -code-creation,Builtin,2,7000,0x1014a8f20,8,TemporalZonedDateTimePrototypeGetISOFields -code-creation,Builtin,2,7000,0x1014a8f40,8,TemporalDurationConstructor -code-creation,Builtin,2,7000,0x1014a8f60,8,TemporalDurationFrom -code-creation,Builtin,2,7000,0x1014a8f80,8,TemporalDurationCompare -code-creation,Builtin,2,7000,0x1014a8fa0,8,TemporalDurationPrototypeYears -code-creation,Builtin,2,7042,0x1014a8fc0,8,TemporalDurationPrototypeMonths -code-creation,Builtin,2,7042,0x1014a8fe0,8,TemporalDurationPrototypeWeeks -code-creation,Builtin,2,7042,0x1014a9000,8,TemporalDurationPrototypeDays -code-creation,Builtin,2,7042,0x1014a9020,8,TemporalDurationPrototypeHours -code-creation,Builtin,2,7042,0x1014a9040,8,TemporalDurationPrototypeMinutes -code-creation,Builtin,2,7042,0x1014a9060,8,TemporalDurationPrototypeSeconds -code-creation,Builtin,2,7042,0x1014a9080,8,TemporalDurationPrototypeMilliseconds -code-creation,Builtin,2,7042,0x1014a90a0,8,TemporalDurationPrototypeMicroseconds -code-creation,Builtin,2,7042,0x1014a90c0,8,TemporalDurationPrototypeNanoseconds -code-creation,Builtin,2,7042,0x1014a90e0,8,TemporalDurationPrototypeSign -code-creation,Builtin,2,7084,0x1014a9100,8,TemporalDurationPrototypeBlank -code-creation,Builtin,2,7084,0x1014a9120,8,TemporalDurationPrototypeWith -code-creation,Builtin,2,7084,0x1014a9140,8,TemporalDurationPrototypeNegated -code-creation,Builtin,2,7084,0x1014a9160,8,TemporalDurationPrototypeAbs -code-creation,Builtin,2,7084,0x1014a9180,8,TemporalDurationPrototypeAdd -code-creation,Builtin,2,7084,0x1014a91a0,8,TemporalDurationPrototypeSubtract -code-creation,Builtin,2,7084,0x1014a91c0,8,TemporalDurationPrototypeRound -code-creation,Builtin,2,7084,0x1014a91e0,8,TemporalDurationPrototypeTotal -code-creation,Builtin,2,7084,0x1014a9200,8,TemporalDurationPrototypeToString -code-creation,Builtin,2,7084,0x1014a9220,8,TemporalDurationPrototypeToJSON -code-creation,Builtin,2,7125,0x1014a9240,8,TemporalDurationPrototypeToLocaleString -code-creation,Builtin,2,7125,0x1014a9260,8,TemporalDurationPrototypeValueOf -code-creation,Builtin,2,7125,0x1014a9280,8,TemporalInstantConstructor -code-creation,Builtin,2,7125,0x1014a92a0,8,TemporalInstantFrom -code-creation,Builtin,2,7125,0x1014a92c0,8,TemporalInstantFromEpochSeconds -code-creation,Builtin,2,7125,0x1014a92e0,8,TemporalInstantFromEpochMilliseconds -code-creation,Builtin,2,7125,0x1014a9300,8,TemporalInstantFromEpochMicroseconds -code-creation,Builtin,2,7125,0x1014a9320,8,TemporalInstantFromEpochNanoseconds -code-creation,Builtin,2,7125,0x1014a9340,8,TemporalInstantCompare -code-creation,Builtin,2,7125,0x1014a9360,8,TemporalInstantPrototypeEpochSeconds -code-creation,Builtin,2,7167,0x1014a9380,8,TemporalInstantPrototypeEpochMilliseconds -code-creation,Builtin,2,7167,0x1014a93a0,8,TemporalInstantPrototypeEpochMicroseconds -code-creation,Builtin,2,7167,0x1014a93c0,8,TemporalInstantPrototypeEpochNanoseconds -code-creation,Builtin,2,7167,0x1014a93e0,8,TemporalInstantPrototypeAdd -code-creation,Builtin,2,7167,0x1014a9400,8,TemporalInstantPrototypeSubtract -code-creation,Builtin,2,7167,0x1014a9420,8,TemporalInstantPrototypeUntil -code-creation,Builtin,2,7167,0x1014a9440,8,TemporalInstantPrototypeSince -code-creation,Builtin,2,7167,0x1014a9460,8,TemporalInstantPrototypeRound -code-creation,Builtin,2,7167,0x1014a9480,8,TemporalInstantPrototypeEquals -code-creation,Builtin,2,7167,0x1014a94a0,8,TemporalInstantPrototypeToString -code-creation,Builtin,2,7209,0x1014a94c0,8,TemporalInstantPrototypeToJSON -code-creation,Builtin,2,7209,0x1014a94e0,8,TemporalInstantPrototypeToLocaleString -code-creation,Builtin,2,7209,0x1014a9500,8,TemporalInstantPrototypeValueOf -code-creation,Builtin,2,7209,0x1014a9520,8,TemporalInstantPrototypeToZonedDateTime -code-creation,Builtin,2,7209,0x1014a9540,8,TemporalInstantPrototypeToZonedDateTimeISO -code-creation,Builtin,2,7209,0x1014a9560,8,TemporalPlainYearMonthConstructor -code-creation,Builtin,2,7209,0x1014a9580,8,TemporalPlainYearMonthFrom -code-creation,Builtin,2,7209,0x1014a95a0,8,TemporalPlainYearMonthCompare -code-creation,Builtin,2,7250,0x1014a95c0,8,TemporalPlainYearMonthPrototypeCalendar -code-creation,Builtin,2,7250,0x1014a95e0,8,TemporalPlainYearMonthPrototypeYear -code-creation,Builtin,2,7250,0x1014a9600,8,TemporalPlainYearMonthPrototypeMonth -code-creation,Builtin,2,7250,0x1014a9620,8,TemporalPlainYearMonthPrototypeMonthCode -code-creation,Builtin,2,7250,0x1014a9640,8,TemporalPlainYearMonthPrototypeDaysInYear -code-creation,Builtin,2,7250,0x1014a9660,8,TemporalPlainYearMonthPrototypeDaysInMonth -code-creation,Builtin,2,7250,0x1014a9680,8,TemporalPlainYearMonthPrototypeMonthsInYear -code-creation,Builtin,2,7250,0x1014a96a0,8,TemporalPlainYearMonthPrototypeInLeapYear -code-creation,Builtin,2,7250,0x1014a96c0,8,TemporalPlainYearMonthPrototypeWith -code-creation,Builtin,2,7292,0x1014a96e0,8,TemporalPlainYearMonthPrototypeAdd -code-creation,Builtin,2,7292,0x1014a9700,8,TemporalPlainYearMonthPrototypeSubtract -code-creation,Builtin,2,7292,0x1014a9720,8,TemporalPlainYearMonthPrototypeUntil -code-creation,Builtin,2,7292,0x1014a9740,8,TemporalPlainYearMonthPrototypeSince -code-creation,Builtin,2,7292,0x1014a9760,8,TemporalPlainYearMonthPrototypeEquals -code-creation,Builtin,2,7292,0x1014a9780,8,TemporalPlainYearMonthPrototypeToString -code-creation,Builtin,2,7292,0x1014a97a0,8,TemporalPlainYearMonthPrototypeToJSON -code-creation,Builtin,2,7292,0x1014a97c0,8,TemporalPlainYearMonthPrototypeToLocaleString -code-creation,Builtin,2,7292,0x1014a97e0,8,TemporalPlainYearMonthPrototypeValueOf -code-creation,Builtin,2,7292,0x1014a9800,8,TemporalPlainYearMonthPrototypeToPlainDate -code-creation,Builtin,2,7334,0x1014a9820,8,TemporalPlainYearMonthPrototypeGetISOFields -code-creation,Builtin,2,7334,0x1014a9840,8,TemporalPlainMonthDayConstructor -code-creation,Builtin,2,7334,0x1014a9860,8,TemporalPlainMonthDayFrom -code-creation,Builtin,2,7334,0x1014a9880,8,TemporalPlainMonthDayPrototypeCalendar -code-creation,Builtin,2,7334,0x1014a98a0,8,TemporalPlainMonthDayPrototypeMonthCode -code-creation,Builtin,2,7334,0x1014a98c0,8,TemporalPlainMonthDayPrototypeDay -code-creation,Builtin,2,7334,0x1014a98e0,8,TemporalPlainMonthDayPrototypeWith -code-creation,Builtin,2,7334,0x1014a9900,8,TemporalPlainMonthDayPrototypeEquals -code-creation,Builtin,2,7334,0x1014a9920,8,TemporalPlainMonthDayPrototypeToString -code-creation,Builtin,2,7375,0x1014a9940,8,TemporalPlainMonthDayPrototypeToJSON -code-creation,Builtin,2,7375,0x1014a9960,8,TemporalPlainMonthDayPrototypeToLocaleString -code-creation,Builtin,2,7375,0x1014a9980,8,TemporalPlainMonthDayPrototypeValueOf -code-creation,Builtin,2,7375,0x1014a99a0,8,TemporalPlainMonthDayPrototypeToPlainDate -code-creation,Builtin,2,7375,0x1014a99c0,8,TemporalPlainMonthDayPrototypeGetISOFields -code-creation,Builtin,2,7375,0x1014a99e0,8,TemporalTimeZoneConstructor -code-creation,Builtin,2,7375,0x1014a9a00,8,TemporalTimeZoneFrom -code-creation,Builtin,2,7375,0x1014a9a20,8,TemporalTimeZonePrototypeId -code-creation,Builtin,2,7375,0x1014a9a40,8,TemporalTimeZonePrototypeGetOffsetNanosecondsFor -code-creation,Builtin,2,7375,0x1014a9a60,8,TemporalTimeZonePrototypeGetOffsetStringFor -code-creation,Builtin,2,7417,0x1014a9a80,8,TemporalTimeZonePrototypeGetPlainDateTimeFor -code-creation,Builtin,2,7417,0x1014a9aa0,8,TemporalTimeZonePrototypeGetInstantFor -code-creation,Builtin,2,7417,0x1014a9ac0,8,TemporalTimeZonePrototypeGetPossibleInstantsFor -code-creation,Builtin,2,7417,0x1014a9ae0,8,TemporalTimeZonePrototypeGetNextTransition -code-creation,Builtin,2,7417,0x1014a9b00,8,TemporalTimeZonePrototypeGetPreviousTransition -code-creation,Builtin,2,7417,0x1014a9b20,8,TemporalTimeZonePrototypeToString -code-creation,Builtin,2,7417,0x1014a9b40,8,TemporalTimeZonePrototypeToJSON -code-creation,Builtin,2,7417,0x1014a9b60,8,TemporalCalendarConstructor -code-creation,Builtin,2,7417,0x1014a9b80,8,TemporalCalendarFrom -code-creation,Builtin,2,7459,0x1014a9ba0,8,TemporalCalendarPrototypeId -code-creation,Builtin,2,7459,0x1014a9bc0,8,TemporalCalendarPrototypeDateFromFields -code-creation,Builtin,2,7459,0x1014a9be0,8,TemporalCalendarPrototypeYearMonthFromFields -code-creation,Builtin,2,7459,0x1014a9c00,8,TemporalCalendarPrototypeMonthDayFromFields -code-creation,Builtin,2,7459,0x1014a9c20,8,TemporalCalendarPrototypeDateAdd -code-creation,Builtin,2,7459,0x1014a9c40,8,TemporalCalendarPrototypeDateUntil -code-creation,Builtin,2,7459,0x1014a9c60,8,TemporalCalendarPrototypeYear -code-creation,Builtin,2,7459,0x1014a9c80,8,TemporalCalendarPrototypeMonth -code-creation,Builtin,2,7459,0x1014a9ca0,8,TemporalCalendarPrototypeMonthCode -code-creation,Builtin,2,7500,0x1014a9cc0,8,TemporalCalendarPrototypeDay -code-creation,Builtin,2,7500,0x1014a9ce0,8,TemporalCalendarPrototypeDayOfWeek -code-creation,Builtin,2,7500,0x1014a9d00,8,TemporalCalendarPrototypeDayOfYear -code-creation,Builtin,2,7500,0x1014a9d20,8,TemporalCalendarPrototypeWeekOfYear -code-creation,Builtin,2,7500,0x1014a9d40,8,TemporalCalendarPrototypeDaysInWeek -code-creation,Builtin,2,7500,0x1014a9d60,8,TemporalCalendarPrototypeDaysInMonth -code-creation,Builtin,2,7500,0x1014a9d80,8,TemporalCalendarPrototypeDaysInYear -code-creation,Builtin,2,7500,0x1014a9da0,8,TemporalCalendarPrototypeMonthsInYear -code-creation,Builtin,2,7542,0x1014a9dc0,8,TemporalCalendarPrototypeInLeapYear -code-creation,Builtin,2,7542,0x1014a9de0,3488,TemporalCalendarPrototypeFields -code-creation,Builtin,2,7542,0x1014aaba0,8,TemporalCalendarPrototypeMergeFields -code-creation,Builtin,2,7542,0x1014aabc0,8,TemporalCalendarPrototypeToString -code-creation,Builtin,2,7542,0x1014aabe0,8,TemporalCalendarPrototypeToJSON -code-creation,Builtin,2,7542,0x1014aac00,8,DatePrototypeToTemporalInstant -code-creation,Builtin,2,7542,0x1014aac20,1728,StringFixedArrayFromIterable -code-creation,Builtin,2,7542,0x1014ab300,1728,TemporalInstantFixedArrayFromIterable -code-creation,Builtin,2,7584,0x1014ab9e0,296,AggregateErrorConstructor -code-creation,Builtin,2,7584,0x1014abb20,804,ArrayPrototypeAt -code-creation,Builtin,2,7584,0x1014abe60,536,ArrayPrototypeConcat -code-creation,Builtin,2,7584,0x1014ac080,4368,ArrayPrototypeCopyWithin -code-creation,Builtin,2,7584,0x1014ad1a0,240,ArrayEveryLoopEagerDeoptContinuation -code-creation,Builtin,2,7584,0x1014ad2a0,544,ArrayEveryLoopLazyDeoptContinuation -code-creation,Builtin,2,7584,0x1014ad4e0,4184,ArrayEveryLoopContinuation -code-creation,Builtin,2,7584,0x1014ae540,1444,ArrayEvery -code-creation,Builtin,2,7584,0x1014aeb00,296,ArrayFilterLoopEagerDeoptContinuation -code-creation,Builtin,2,7584,0x1014aec40,788,ArrayFilterLoopLazyDeoptContinuation -code-creation,Builtin,2,7625,0x1014aef60,4384,ArrayFilterLoopContinuation -code-creation,Builtin,2,7625,0x1014b00a0,4276,ArrayFilter -code-creation,Builtin,2,7625,0x1014b1160,232,ArrayFindLoopEagerDeoptContinuation -code-creation,Builtin,2,7625,0x1014b1260,52,ArrayFindLoopLazyDeoptContinuation -code-creation,Builtin,2,7625,0x1014b12a0,352,ArrayFindLoopAfterCallbackLazyDeoptContinuation -code-creation,Builtin,2,7625,0x1014b1420,500,ArrayFindLoopContinuation -code-creation,Builtin,2,7625,0x1014b1620,1432,ArrayPrototypeFind -code-creation,Builtin,2,7625,0x1014b1bc0,232,ArrayFindIndexLoopEagerDeoptContinuation -code-creation,Builtin,2,7625,0x1014b1cc0,52,ArrayFindIndexLoopLazyDeoptContinuation -code-creation,Builtin,2,7625,0x1014b1d00,352,ArrayFindIndexLoopAfterCallbackLazyDeoptContinuation -code-creation,Builtin,2,7667,0x1014b1e80,492,ArrayFindIndexLoopContinuation -code-creation,Builtin,2,7667,0x1014b2080,1432,ArrayPrototypeFindIndex -code-creation,Builtin,2,7667,0x1014b2620,444,ArrayFindLastLoopContinuation -code-creation,Builtin,2,7667,0x1014b27e0,1544,ArrayPrototypeFindLast -code-creation,Builtin,2,7667,0x1014b2e00,436,ArrayFindLastIndexLoopContinuation -code-creation,Builtin,2,7667,0x1014b2fc0,1540,ArrayPrototypeFindLastIndex -code-creation,Builtin,2,7667,0x1014b35e0,240,ArrayForEachLoopEagerDeoptContinuation -code-creation,Builtin,2,7667,0x1014b36e0,240,ArrayForEachLoopLazyDeoptContinuation -code-creation,Builtin,2,7667,0x1014b37e0,4112,ArrayForEachLoopContinuation -code-creation,Builtin,2,7709,0x1014b4800,1296,ArrayForEach -code-creation,Builtin,2,7709,0x1014b4d20,4344,ArrayFrom -code-creation,Builtin,2,7709,0x1014b5e20,192,ArrayIsArray -code-creation,Builtin,2,7709,0x1014b5f00,388,LoadJoinElement_DictionaryElements_0 -code-creation,Builtin,2,7709,0x1014b60a0,60,LoadJoinElement_FastSmiOrObjectElements_0 -code-creation,Builtin,2,7709,0x1014b60e0,160,LoadJoinElement_FastDoubleElements_0 -code-creation,Builtin,2,7709,0x1014b61a0,240,ConvertToLocaleString -code-creation,Builtin,2,7709,0x1014b62a0,792,JoinStackPush -code-creation,Builtin,2,7709,0x1014b65c0,300,JoinStackPop -code-creation,Builtin,2,7709,0x1014b6700,8756,ArrayPrototypeJoin -code-creation,Builtin,2,7709,0x1014b8940,5596,ArrayPrototypeToLocaleString -code-creation,Builtin,2,7750,0x1014b9f20,276,ArrayPrototypeToString -code-creation,Builtin,2,7750,0x1014ba040,8620,TypedArrayPrototypeJoin -code-creation,Builtin,2,7750,0x1014bc200,5412,TypedArrayPrototypeToLocaleString -code-creation,Builtin,2,7750,0x1014bd740,3884,ArrayPrototypeLastIndexOf -code-creation,Builtin,2,7750,0x1014be680,260,ArrayMapPreLoopLazyDeoptContinuation -code-creation,Builtin,2,7750,0x1014be7a0,260,ArrayMapLoopEagerDeoptContinuation -code-creation,Builtin,2,7750,0x1014be8c0,444,ArrayMapLoopLazyDeoptContinuation -code-creation,Builtin,2,7750,0x1014bea80,4084,ArrayMapLoopContinuation -code-creation,Builtin,2,7750,0x1014bfa80,3700,ArrayMap -code-creation,Builtin,2,7750,0x1014c0900,1336,ArrayOf -code-creation,Builtin,2,7792,0x1014c0e40,404,ArrayReduceRightPreLoopEagerDeoptContinuation -code-creation,Builtin,2,7792,0x1014c0fe0,232,ArrayReduceRightLoopEagerDeoptContinuation -code-creation,Builtin,2,7792,0x1014c10e0,232,ArrayReduceRightLoopLazyDeoptContinuation -code-creation,Builtin,2,7792,0x1014c11e0,4092,ArrayReduceRightLoopContinuation -code-creation,Builtin,2,7792,0x1014c21e0,1772,ArrayReduceRight -code-creation,Builtin,2,7792,0x1014c28e0,208,ArrayReducePreLoopEagerDeoptContinuation -code-creation,Builtin,2,7792,0x1014c29c0,232,ArrayReduceLoopEagerDeoptContinuation -code-creation,Builtin,2,7792,0x1014c2ac0,232,ArrayReduceLoopLazyDeoptContinuation -code-creation,Builtin,2,7792,0x1014c2bc0,4156,ArrayReduceLoopContinuation -code-creation,Builtin,2,7834,0x1014c3c00,1488,ArrayReduce -code-creation,Builtin,2,7834,0x1014c41e0,3164,ArrayPrototypeReverse -code-creation,Builtin,2,7834,0x1014c4e40,3360,ArrayPrototypeShift -code-creation,Builtin,2,7834,0x1014c5b80,5140,ArrayPrototypeSlice -code-creation,Builtin,2,7834,0x1014c6fa0,240,ArraySomeLoopEagerDeoptContinuation -code-creation,Builtin,2,7834,0x1014c70a0,532,ArraySomeLoopLazyDeoptContinuation -code-creation,Builtin,2,7834,0x1014c72c0,4180,ArraySomeLoopContinuation -code-creation,Builtin,2,7834,0x1014c8320,1444,ArraySome -code-creation,Builtin,2,7834,0x1014c88e0,12600,ArrayPrototypeSplice -code-creation,Builtin,2,7834,0x1014cba20,1492,GenericArrayToReversed -code-creation,Builtin,2,7834,0x1014cc000,2812,ArrayPrototypeToReversed -code-creation,Builtin,2,7875,0x1014ccb00,5000,ArrayTimSortIntoCopy -code-creation,Builtin,2,7875,0x1014cdea0,1864,ArrayPrototypeToSorted -code-creation,Builtin,2,7875,0x1014ce600,7768,ArrayPrototypeToSpliced -code-creation,Builtin,2,7875,0x1014d0460,2712,ArrayPrototypeUnshift -code-creation,Builtin,2,7875,0x1014d0f00,932,GenericArrayWith -code-creation,Builtin,2,7875,0x1014d12c0,1076,ArrayPrototypeWith -code-creation,Builtin,2,7875,0x1014d1700,308,ArrayBufferPrototypeGetByteLength -code-creation,Builtin,2,7875,0x1014d1840,424,ArrayBufferPrototypeGetMaxByteLength -code-creation,Builtin,2,7875,0x1014d1a00,228,ArrayBufferPrototypeGetResizable -code-creation,Builtin,2,7875,0x1014d1b00,228,ArrayBufferPrototypeGetDetached -code-creation,Builtin,2,7917,0x1014d1c00,308,SharedArrayBufferPrototypeGetMaxByteLength -code-creation,Builtin,2,7917,0x1014d1d40,228,SharedArrayBufferPrototypeGetGrowable -code-creation,Builtin,2,7917,0x1014d1e40,128,ArrayBufferIsView -code-creation,Builtin,2,7917,0x1014d1ee0,220,ToInteger -code-creation,Builtin,2,7917,0x1014d1fc0,3916,FastCreateDataProperty -code-creation,Builtin,2,7917,0x1014d2f20,648,CheckSameObject -code-creation,Builtin,2,7917,0x1014d31c0,1044,BooleanConstructor -code-creation,Builtin,2,7917,0x1014d35e0,188,BooleanPrototypeToString -code-creation,Builtin,2,7917,0x1014d36a0,184,BooleanPrototypeValueOf -code-creation,Builtin,2,7917,0x1014d3760,980,BigIntAddNoThrow -code-creation,Builtin,2,7959,0x1014d3b40,1060,BigIntAdd -code-creation,Builtin,2,7959,0x1014d3f80,980,BigIntSubtractNoThrow -code-creation,Builtin,2,7959,0x1014d4360,1060,BigIntSubtract -code-creation,Builtin,2,7959,0x1014d47a0,320,BigIntMultiplyNoThrow -code-creation,Builtin,2,7959,0x1014d4900,436,BigIntMultiply -code-creation,Builtin,2,7959,0x1014d4ac0,516,BigIntDivideNoThrow -code-creation,Builtin,2,7959,0x1014d4ce0,632,BigIntDivide -code-creation,Builtin,2,7959,0x1014d4f60,428,BigIntModulusNoThrow -code-creation,Builtin,2,7959,0x1014d5120,544,BigIntModulus -code-creation,Builtin,2,7959,0x1014d5360,916,BigIntBitwiseAndNoThrow -code-creation,Builtin,2,7959,0x1014d5700,1108,BigIntBitwiseAnd -code-creation,Builtin,2,8000,0x1014d5b60,880,BigIntBitwiseOrNoThrow -code-creation,Builtin,2,8000,0x1014d5ee0,1044,BigIntBitwiseOr -code-creation,Builtin,2,8000,0x1014d6300,944,BigIntBitwiseXorNoThrow -code-creation,Builtin,2,8000,0x1014d66c0,1136,BigIntBitwiseXor -code-creation,Builtin,2,8000,0x1014d6b40,1120,BigIntShiftLeftNoThrow -code-creation,Builtin,2,8000,0x1014d6fc0,1220,BigIntShiftLeft -code-creation,Builtin,2,8000,0x1014d74a0,1120,BigIntShiftRightNoThrow -code-creation,Builtin,2,8000,0x1014d7920,1220,BigIntShiftRight -code-creation,Builtin,2,8000,0x1014d7e00,132,BigIntEqual -code-creation,Builtin,2,8000,0x1014d7ea0,184,BigIntLessThan -code-creation,Builtin,2,8000,0x1014d7f60,188,BigIntGreaterThan -code-creation,Builtin,2,8042,0x1014d8020,188,BigIntLessThanOrEqual -code-creation,Builtin,2,8042,0x1014d80e0,184,BigIntGreaterThanOrEqual -code-creation,Builtin,2,8042,0x1014d81a0,324,BigIntUnaryMinus -code-creation,Builtin,2,8042,0x1014d8300,1936,ToString -code-creation,Builtin,2,8042,0x1014d8aa0,180,StringPrototypeToString -code-creation,Builtin,2,8042,0x1014d8b60,180,StringPrototypeValueOf -code-creation,Builtin,2,8042,0x1014d8c20,2152,StringToList -code-creation,Builtin,2,8042,0x1014d94a0,800,StringPrototypeCharAt -code-creation,Builtin,2,8042,0x1014d97e0,684,StringPrototypeCharCodeAt -code-creation,Builtin,2,8042,0x1014d9aa0,1188,StringPrototypeCodePointAt -code-creation,Builtin,2,8084,0x1014d9f60,436,StringPrototypeConcat -code-creation,Builtin,2,8084,0x1014da120,1088,StringConstructor -code-creation,Builtin,2,8084,0x1014da580,2012,StringAddConvertLeft -code-creation,Builtin,2,8084,0x1014dad60,2040,StringAddConvertRight -code-creation,Builtin,2,8084,0x1014db560,660,StringCharAt -code-creation,Builtin,2,8084,0x1014db800,20,FastNewClosureBaseline -code-creation,Builtin,2,8084,0x1014db820,264,FastNewFunctionContextEval -code-creation,Builtin,2,8084,0x1014db940,264,FastNewFunctionContextFunction -code-creation,Builtin,2,8084,0x1014dba60,296,CreateRegExpLiteral -code-creation,Builtin,2,8084,0x1014dbba0,1188,CreateShallowArrayLiteral -code-creation,Builtin,2,8084,0x1014dc060,480,CreateEmptyArrayLiteral -code-creation,Builtin,2,8125,0x1014dc260,1932,CreateShallowObjectLiteral -code-creation,Builtin,2,8125,0x1014dca00,452,ObjectConstructor -code-creation,Builtin,2,8125,0x1014dcbe0,224,CreateEmptyLiteralObject -code-creation,Builtin,2,8125,0x1014dcce0,588,NumberConstructor -code-creation,Builtin,2,8125,0x1014dcf40,92,GenericLazyDeoptContinuation -code-creation,Builtin,2,8125,0x1014dcfa0,84,StringToNumber -code-creation,Builtin,2,8125,0x1014dd000,240,NonNumberToNumber -code-creation,Builtin,2,8125,0x1014dd100,288,NonNumberToNumeric -code-creation,Builtin,2,8125,0x1014dd240,60,ToNumeric -code-creation,Builtin,2,8125,0x1014dd280,1388,NumberToString -code-creation,Builtin,2,8125,0x1014dd800,128,ToBoolean -code-creation,Builtin,2,8167,0x1014dd8a0,128,ToBooleanForBaselineJump -code-creation,Builtin,2,8167,0x1014dd940,548,ToLength -code-creation,Builtin,2,8167,0x1014ddb80,1296,ToName -code-creation,Builtin,2,8167,0x1014de0a0,912,ToObject -code-creation,Builtin,2,8167,0x1014de440,276,NonPrimitiveToPrimitive_Default -code-creation,Builtin,2,8167,0x1014de560,276,NonPrimitiveToPrimitive_Number -code-creation,Builtin,2,8167,0x1014de680,636,NonPrimitiveToPrimitive_String -code-creation,Builtin,2,8167,0x1014de900,36,OrdinaryToPrimitive_Number -code-creation,Builtin,2,8167,0x1014de940,412,OrdinaryToPrimitive_Number_Inline -code-creation,Builtin,2,8209,0x1014deae0,412,OrdinaryToPrimitive_String -code-creation,Builtin,2,8209,0x1014dec80,268,FastConsoleAssert -code-creation,Builtin,2,8209,0x1014deda0,208,DataViewPrototypeGetBuffer -code-creation,Builtin,2,8209,0x1014dee80,712,DataViewPrototypeGetByteLength -code-creation,Builtin,2,8209,0x1014df160,432,DataViewPrototypeGetByteOffset -code-creation,Builtin,2,8209,0x1014df320,760,DataViewPrototypeGetUint8 -code-creation,Builtin,2,8209,0x1014df620,760,DataViewPrototypeGetInt8 -code-creation,Builtin,2,8209,0x1014df920,848,DataViewPrototypeGetUint16 -code-creation,Builtin,2,8209,0x1014dfc80,844,DataViewPrototypeGetInt16 -code-creation,Builtin,2,8209,0x1014dffe0,988,DataViewPrototypeGetUint32 -code-creation,Builtin,2,8209,0x1014e03c0,876,DataViewPrototypeGetInt32 -code-creation,Builtin,2,8250,0x1014e0740,1004,DataViewPrototypeGetFloat32 -code-creation,Builtin,2,8250,0x1014e0b40,1068,DataViewPrototypeGetFloat64 -code-creation,Builtin,2,8250,0x1014e0f80,1136,DataViewPrototypeGetBigUint64 -code-creation,Builtin,2,8250,0x1014e1400,1160,DataViewPrototypeGetBigInt64 -code-creation,Builtin,2,8250,0x1014e18a0,1148,DataViewPrototypeSetUint8 -code-creation,Builtin,2,8250,0x1014e1d20,1148,DataViewPrototypeSetInt8 -code-creation,Builtin,2,8250,0x1014e21a0,1236,DataViewPrototypeSetUint16 -code-creation,Builtin,2,8250,0x1014e2680,1236,DataViewPrototypeSetInt16 -code-creation,Builtin,2,8250,0x1014e2b60,1268,DataViewPrototypeSetUint32 -code-creation,Builtin,2,8250,0x1014e3060,1268,DataViewPrototypeSetInt32 -code-creation,Builtin,2,8292,0x1014e3560,1272,DataViewPrototypeSetFloat32 -code-creation,Builtin,2,8292,0x1014e3a60,1332,DataViewPrototypeSetFloat64 -code-creation,Builtin,2,8292,0x1014e3fa0,1192,DataViewPrototypeSetBigUint64 -code-creation,Builtin,2,8292,0x1014e4460,1192,DataViewPrototypeSetBigInt64 -code-creation,Builtin,2,8292,0x1014e4920,952,FinalizationRegistryConstructor -code-creation,Builtin,2,8292,0x1014e4ce0,1084,FinalizationRegistryRegister -code-creation,Builtin,2,8292,0x1014e5120,664,FinalizationRegistryPrototypeCleanupSome -code-creation,Builtin,2,8292,0x1014e53c0,360,FunctionPrototypeHasInstance -code-creation,Builtin,2,8292,0x1014e5540,924,FastFunctionPrototypeBind -code-creation,Builtin,2,8292,0x1014e58e0,100,IncBlockCounter -code-creation,Builtin,2,8334,0x1014e5960,308,GetTemplateObject -code-creation,Builtin,2,8334,0x1014e5aa0,132,ForInNext -code-creation,Builtin,2,8334,0x1014e5b40,184,GetImportMetaObjectBaseline -code-creation,Builtin,2,8334,0x1014e5c00,128,GetIteratorWithFeedback -code-creation,Builtin,2,8334,0x1014e5ca0,124,GetIteratorBaseline -code-creation,Builtin,2,8334,0x1014e5d20,308,CreateAsyncFromSyncIteratorBaseline -code-creation,Builtin,2,8334,0x1014e5e60,952,CallIteratorWithFeedback -code-creation,Builtin,2,8334,0x1014e6220,924,IteratorConstructor -code-creation,Builtin,2,8334,0x1014e65c0,1020,IteratorFrom -code-creation,Builtin,2,8334,0x1014e69c0,184,WrapForValidIteratorPrototypeNext -code-creation,Builtin,2,8334,0x1014e6a80,432,WrapForValidIteratorPrototypeReturn -code-creation,Builtin,2,8375,0x1014e6c40,268,IteratorHelperPrototypeNext -code-creation,Builtin,2,8375,0x1014e6d60,396,IteratorHelperPrototypeReturn -code-creation,Builtin,2,8375,0x1014e6f00,440,IteratorPrototypeMap -code-creation,Builtin,2,8375,0x1014e70c0,1160,IteratorMapHelperNext -code-creation,Builtin,2,8375,0x1014e7560,440,IteratorPrototypeFilter -code-creation,Builtin,2,8375,0x1014e7720,1308,IteratorFilterHelperNext -code-creation,Builtin,2,8375,0x1014e7c40,548,IteratorPrototypeTake -code-creation,Builtin,2,8375,0x1014e7e80,1276,IteratorTakeHelperNext -code-creation,Builtin,2,8375,0x1014e8380,548,IteratorPrototypeDrop -code-creation,Builtin,2,8375,0x1014e85c0,1472,IteratorDropHelperNext -code-creation,Builtin,2,8417,0x1014e8ba0,272,MathAbs -code-creation,Builtin,2,8417,0x1014e8cc0,252,MathCeil -code-creation,Builtin,2,8417,0x1014e8dc0,252,MathFloor -code-creation,Builtin,2,8417,0x1014e8ec0,276,MathRound -code-creation,Builtin,2,8417,0x1014e8fe0,252,MathTrunc -code-creation,Builtin,2,8417,0x1014e90e0,368,MathPow -code-creation,Builtin,2,8417,0x1014e9260,396,MathMax -code-creation,Builtin,2,8417,0x1014e9400,396,MathMin -code-creation,Builtin,2,8417,0x1014e95a0,288,MathAcos -code-creation,Builtin,2,8417,0x1014e96e0,288,MathAcosh -code-creation,Builtin,2,8459,0x1014e9820,288,MathAsin -code-creation,Builtin,2,8459,0x1014e9960,288,MathAsinh -code-creation,Builtin,2,8459,0x1014e9aa0,288,MathAtan -code-creation,Builtin,2,8459,0x1014e9be0,364,MathAtan2 -code-creation,Builtin,2,8459,0x1014e9d60,288,MathAtanh -code-creation,Builtin,2,8459,0x1014e9ea0,288,MathCbrt -code-creation,Builtin,2,8459,0x1014e9fe0,156,MathClz32 -code-creation,Builtin,2,8459,0x1014ea080,288,MathCos -code-creation,Builtin,2,8459,0x1014ea1c0,288,MathCosh -code-creation,Builtin,2,8459,0x1014ea300,288,MathExp -code-creation,Builtin,2,8500,0x1014ea440,288,MathExpm1 -code-creation,Builtin,2,8500,0x1014ea580,260,MathFround -code-creation,Builtin,2,8500,0x1014ea6a0,228,MathImul -code-creation,Builtin,2,8500,0x1014ea7a0,288,MathLog -code-creation,Builtin,2,8500,0x1014ea8e0,288,MathLog1p -code-creation,Builtin,2,8500,0x1014eaa20,288,MathLog10 -code-creation,Builtin,2,8500,0x1014eab60,288,MathLog2 -code-creation,Builtin,2,8500,0x1014eaca0,288,MathSin -code-creation,Builtin,2,8500,0x1014eade0,180,MathSign -code-creation,Builtin,2,8500,0x1014eaea0,288,MathSinh -code-creation,Builtin,2,8500,0x1014eafe0,256,MathSqrt -code-creation,Builtin,2,8542,0x1014eb100,288,MathTan -code-creation,Builtin,2,8542,0x1014eb240,288,MathTanh -code-creation,Builtin,2,8542,0x1014eb380,1032,MathHypot -code-creation,Builtin,2,8542,0x1014eb7a0,328,MathRandom -code-creation,Builtin,2,8542,0x1014eb900,2572,NumberPrototypeToString -code-creation,Builtin,2,8542,0x1014ec320,156,NumberIsFinite -code-creation,Builtin,2,8542,0x1014ec3c0,156,NumberIsInteger -code-creation,Builtin,2,8542,0x1014ec460,152,NumberIsNaN -code-creation,Builtin,2,8542,0x1014ec500,184,NumberIsSafeInteger -tick,0x1957a20c4,8584,0,0x0,6 -tick,0x1956a1a88,8584,0,0x0,6 -tick,0x1957a1074,8584,0,0x0,6 -tick,0x1957a20c4,8584,0,0x0,6 -code-creation,Builtin,2,8584,0x1014ec5c0,184,NumberPrototypeValueOf -code-creation,Builtin,2,8584,0x1014ec680,224,NumberParseFloat -code-creation,Builtin,2,8625,0x1014ec780,188,ParseInt -code-creation,Builtin,2,8625,0x1014ec840,108,NumberParseInt -code-creation,Builtin,2,8625,0x1014ec8c0,732,Add -code-creation,Builtin,2,8625,0x1014ecba0,404,Subtract -code-creation,Builtin,2,8625,0x1014ecd40,528,Multiply -code-creation,Builtin,2,8625,0x1014ecf60,452,Divide -code-creation,Builtin,2,8625,0x1014ed140,508,Modulus -code-creation,Builtin,2,8625,0x1014ed340,512,Exponentiate -code-creation,Builtin,2,8625,0x1014ed560,308,Negate -code-creation,Builtin,2,8625,0x1014ed6a0,152,BitwiseNot -code-creation,Builtin,2,8625,0x1014ed740,120,Decrement -code-creation,Builtin,2,8667,0x1014ed7c0,120,Increment -code-creation,Builtin,2,8667,0x1014ed840,480,ShiftLeft -code-creation,Builtin,2,8667,0x1014eda40,480,ShiftRight -code-creation,Builtin,2,8667,0x1014edc40,536,ShiftRightLogical -code-creation,Builtin,2,8667,0x1014ede60,264,BitwiseAnd -code-creation,Builtin,2,8667,0x1014edf80,264,BitwiseOr -code-creation,Builtin,2,8667,0x1014ee0a0,264,BitwiseXor -code-creation,Builtin,2,8667,0x1014ee1c0,1004,LessThan -code-creation,Builtin,2,8667,0x1014ee5c0,1004,LessThanOrEqual -code-creation,Builtin,2,8667,0x1014ee9c0,1004,GreaterThan -code-creation,Builtin,2,8667,0x1014eedc0,1004,GreaterThanOrEqual -code-creation,Builtin,2,8667,0x1014ef1c0,1132,Equal -code-creation,Builtin,2,8709,0x1014ef640,540,StrictEqual -code-creation,Builtin,2,8709,0x1014ef860,3288,ObjectFromEntries -code-creation,Builtin,2,8709,0x1014f0540,884,CreateObjectWithoutProperties -code-creation,Builtin,2,8709,0x1014f08c0,176,ObjectIsExtensible -code-creation,Builtin,2,8709,0x1014f0980,180,ObjectPreventExtensions -code-creation,Builtin,2,8709,0x1014f0a40,184,ObjectGetPrototypeOf -code-creation,Builtin,2,8709,0x1014f0b00,312,ObjectSetPrototypeOf -code-creation,Builtin,2,8709,0x1014f0c40,92,ObjectPrototypeToString -code-creation,Builtin,2,8709,0x1014f0ca0,116,ObjectPrototypeValueOf -code-creation,Builtin,2,8750,0x1014f0d20,196,ObjectPrototypeToLocaleString -code-creation,Builtin,2,8750,0x1014f0e00,792,FulfillPromise -code-creation,Builtin,2,8750,0x1014f1120,904,RejectPromise -code-creation,Builtin,2,8750,0x1014f14c0,2420,NewPromiseCapability -code-creation,Builtin,2,8750,0x1014f1e40,212,PromiseCapabilityDefaultReject -code-creation,Builtin,2,8750,0x1014f1f20,192,PromiseCapabilityDefaultResolve -code-creation,Builtin,2,8750,0x1014f2000,1332,PerformPromiseThen -code-creation,Builtin,2,8750,0x1014f2540,672,PromiseReject -code-creation,Builtin,2,8750,0x1014f2800,300,PromiseGetCapabilitiesExecutor -code-creation,Builtin,2,8750,0x1014f2940,140,PromiseConstructorLazyDeoptContinuation -code-creation,Builtin,2,8792,0x1014f29e0,4376,PromiseAll -code-creation,Builtin,2,8792,0x1014f3b00,4700,PromiseAllSettled -code-creation,Builtin,2,8792,0x1014f4d60,1088,PromiseAllResolveElementClosure -code-creation,Builtin,2,8792,0x1014f51c0,1424,PromiseAllSettledResolveElementClosure -code-creation,Builtin,2,8792,0x1014f5760,1432,PromiseAllSettledRejectElementClosure -code-creation,Builtin,2,8792,0x1014f5d00,1168,PromiseAnyRejectElementClosure -code-creation,Builtin,2,8792,0x1014f61a0,2624,PromiseAny -code-creation,Builtin,2,8792,0x1014f6c00,3072,PromiseConstructor -code-creation,Builtin,2,8834,0x1014f7820,360,PromisePrototypeCatch -code-creation,Builtin,2,8834,0x1014f79a0,108,PromiseValueThunkFinally -code-creation,Builtin,2,8834,0x1014f7a20,108,PromiseThrowerFinally -code-creation,Builtin,2,8834,0x1014f7aa0,1032,PromiseCatchFinally -code-creation,Builtin,2,8834,0x1014f7ec0,1032,PromiseThenFinally -code-creation,Builtin,2,8834,0x1014f82e0,1708,PromisePrototypeFinally -code-creation,Builtin,2,8834,0x1014f89a0,1476,PromiseRace -code-creation,Builtin,2,8834,0x1014f8f80,336,PromiseFulfillReactionJob -code-creation,Builtin,2,8834,0x1014f90e0,432,PromiseRejectReactionJob -code-creation,Builtin,2,8875,0x1014f92a0,172,PromiseResolveTrampoline -code-creation,Builtin,2,8875,0x1014f9360,704,PromiseResolve -code-creation,Builtin,2,8875,0x1014f9640,808,ResolvePromise -code-creation,Builtin,2,8875,0x1014f9980,2304,PromisePrototypeThen -code-creation,Builtin,2,8875,0x1014fa2a0,1264,PromiseResolveThenableJob -code-creation,Builtin,2,8875,0x1014fa7a0,440,ProxyConstructor -code-creation,Builtin,2,8875,0x1014fa960,2416,ProxyDeleteProperty -code-creation,Builtin,2,8875,0x1014fb2e0,2696,ProxyGetProperty -code-creation,Builtin,2,8875,0x1014fbd80,1040,ProxyGetPrototypeOf -code-creation,Builtin,2,8875,0x1014fc1a0,2364,ProxyHasProperty -code-creation,Builtin,2,8875,0x1014fcae0,788,ProxyIsExtensible -code-creation,Builtin,2,8917,0x1014fce00,816,ProxyPreventExtensions -code-creation,Builtin,2,8917,0x1014fd140,1096,ProxyRevocable -code-creation,Builtin,2,8917,0x1014fd5a0,144,ProxyRevoke -code-creation,Builtin,2,8917,0x1014fd640,2852,ProxySetProperty -code-creation,Builtin,2,8917,0x1014fe180,1272,ProxySetPrototypeOf -code-creation,Builtin,2,8917,0x1014fe680,228,ReflectIsExtensible -code-creation,Builtin,2,8917,0x1014fe780,232,ReflectPreventExtensions -code-creation,Builtin,2,8917,0x1014fe880,208,ReflectGetPrototypeOf -code-creation,Builtin,2,8917,0x1014fe960,336,ReflectSetPrototypeOf -code-creation,Builtin,2,8917,0x1014feac0,300,ReflectGet -code-creation,Builtin,2,8917,0x1014fec00,176,ReflectDeleteProperty -code-creation,Builtin,2,8959,0x1014fecc0,164,ReflectHas -code-creation,Builtin,2,8959,0x1014fed80,4396,ReflectGetOwnPropertyDescriptor -code-creation,Builtin,2,8959,0x1014ffec0,4940,RegExpPrototypeExecSlow -code-creation,Builtin,2,8959,0x101501220,4988,RegExpPrototypeExec -code-creation,Builtin,2,8959,0x1015025a0,2420,RegExpPrototypeMatchAll -code-creation,Builtin,2,8959,0x101502f20,8752,RegExpStringIteratorPrototypeNext -code-creation,Builtin,2,8959,0x101505160,8412,RegExpMatchFast -code-creation,Builtin,2,8959,0x101507240,3584,RegExpPrototypeMatch -code-creation,Builtin,2,8959,0x101508060,5948,RegExpReplace -code-creation,Builtin,2,8959,0x1015097a0,532,RegExpPrototypeReplace -code-creation,Builtin,2,9000,0x1015099c0,1364,RegExpSearchFast -code-creation,Builtin,2,9000,0x101509f20,1556,RegExpPrototypeSearch -code-creation,Builtin,2,9000,0x10150a540,212,RegExpPrototypeSourceGetter -code-creation,Builtin,2,9000,0x10150a620,5748,RegExpSplit -code-creation,Builtin,2,9000,0x10150bca0,496,RegExpPrototypeSplit -code-creation,Builtin,2,9000,0x10150bea0,2176,RegExpPrototypeTest -code-creation,Builtin,2,9000,0x10150c740,1284,RegExpPrototypeTestFast -code-creation,Builtin,2,9000,0x10150cc60,236,RegExpPrototypeGlobalGetter -code-creation,Builtin,2,9000,0x10150cd60,244,RegExpPrototypeIgnoreCaseGetter -code-creation,Builtin,2,9000,0x10150ce60,244,RegExpPrototypeMultilineGetter -code-creation,Builtin,2,9042,0x10150cf60,244,RegExpPrototypeHasIndicesGetter -code-creation,Builtin,2,9042,0x10150d060,244,RegExpPrototypeLinearGetter -code-creation,Builtin,2,9042,0x10150d160,244,RegExpPrototypeDotAllGetter -code-creation,Builtin,2,9042,0x10150d260,272,RegExpPrototypeStickyGetter -code-creation,Builtin,2,9042,0x10150d380,272,RegExpPrototypeUnicodeGetter -code-creation,Builtin,2,9042,0x10150d4a0,244,RegExpPrototypeUnicodeSetsGetter -code-creation,Builtin,2,9042,0x10150d5a0,2424,RegExpPrototypeFlagsGetter -code-creation,Builtin,2,9042,0x10150df20,1156,StringPrototypeAt -code-creation,Builtin,2,9042,0x10150e3c0,3312,StringPrototypeEndsWith -code-creation,Builtin,2,9042,0x10150f0c0,468,CreateHTML -code-creation,Builtin,2,9084,0x10150f2a0,172,StringPrototypeAnchor -code-creation,Builtin,2,9084,0x10150f360,148,StringPrototypeBig -code-creation,Builtin,2,9084,0x10150f400,148,StringPrototypeBlink -code-creation,Builtin,2,9084,0x10150f4a0,148,StringPrototypeBold -code-creation,Builtin,2,9084,0x10150f540,180,StringPrototypeFontcolor -code-creation,Builtin,2,9084,0x10150f600,180,StringPrototypeFontsize -code-creation,Builtin,2,9084,0x10150f6c0,148,StringPrototypeFixed -code-creation,Builtin,2,9084,0x10150f760,148,StringPrototypeItalics -code-creation,Builtin,2,9084,0x10150f800,180,StringPrototypeLink -code-creation,Builtin,2,9084,0x10150f8c0,148,StringPrototypeSmall -code-creation,Builtin,2,9084,0x10150f960,148,StringPrototypeStrike -code-creation,Builtin,2,9125,0x10150fa00,148,StringPrototypeSub -code-creation,Builtin,2,9125,0x10150faa0,148,StringPrototypeSup -code-creation,Builtin,2,9125,0x10150fb40,956,StringPrototypeIncludes -code-creation,Builtin,2,9125,0x10150ff00,576,StringPrototypeIndexOf -code-creation,Builtin,2,9125,0x101510160,684,StringPrototypeIsWellFormed -code-creation,Builtin,2,9125,0x101510420,344,StringPrototypeIterator -code-creation,Builtin,2,9125,0x101510580,1668,StringIteratorPrototypeNext -code-creation,Builtin,2,9125,0x101510c20,1420,StringPrototypeMatch -code-creation,Builtin,2,9125,0x1015111c0,1420,StringPrototypeSearch -code-creation,Builtin,2,9125,0x101511760,792,StringPrototypePadStart -code-creation,Builtin,2,9167,0x101511a80,796,StringPrototypePadEnd -code-creation,Builtin,2,9167,0x101511da0,136,StringRepeat -code-creation,Builtin,2,9167,0x101511e40,400,StringPrototypeRepeat -code-creation,Builtin,2,9167,0x101511fe0,10728,StringPrototypeReplaceAll -code-creation,Builtin,2,9167,0x1015149e0,3140,StringPrototypeSlice -code-creation,Builtin,2,9167,0x101515640,3304,StringPrototypeStartsWith -code-creation,Builtin,2,9167,0x101516340,3124,StringPrototypeSubstr -code-creation,Builtin,2,9167,0x101516f80,3096,StringPrototypeSubstring -code-creation,Builtin,2,9167,0x101517ba0,984,StringPrototypeToWellFormed -code-creation,Builtin,2,9167,0x101517f80,6880,StringPrototypeTrim -code-creation,Builtin,2,9209,0x101519a80,6360,StringPrototypeTrimStart -code-creation,Builtin,2,9209,0x10151b360,6008,StringPrototypeTrimEnd -code-creation,Builtin,2,9209,0x10151cae0,188,SymbolPrototypeDescriptionGetter -code-creation,Builtin,2,9209,0x10151cba0,196,SymbolPrototypeToPrimitive -code-creation,Builtin,2,9209,0x10151cc80,208,SymbolPrototypeToString -code-creation,Builtin,2,9209,0x10151cd60,184,SymbolPrototypeValueOf -code-creation,Builtin,2,9209,0x10151ce20,1040,TypedArrayPrototypeAt -code-creation,Builtin,2,9209,0x10151d240,9508,CreateTypedArray -code-creation,Builtin,2,9209,0x10151f780,1676,TypedArrayPrototypeEvery -code-creation,Builtin,2,9250,0x10151fe20,412,TypedArrayPrototypeEntries -code-creation,Builtin,2,9250,0x10151ffc0,4244,TypedArrayPrototypeFilter -code-creation,Builtin,2,9250,0x101521060,1664,TypedArrayPrototypeFind -code-creation,Builtin,2,9250,0x101521700,1668,TypedArrayPrototypeFindIndex -code-creation,Builtin,2,9250,0x101521da0,1644,TypedArrayPrototypeFindLast -code-creation,Builtin,2,9250,0x101522420,1648,TypedArrayPrototypeFindLastIndex -code-creation,Builtin,2,9250,0x101522aa0,1540,TypedArrayPrototypeForEach -code-creation,Builtin,2,9292,0x1015230c0,2740,TypedArrayFrom -code-creation,Builtin,2,9292,0x101523b80,408,TypedArrayPrototypeKeys -code-creation,Builtin,2,9292,0x101523d20,1272,TypedArrayOf -code-creation,Builtin,2,9292,0x101524220,1644,TypedArrayPrototypeReduce -code-creation,Builtin,2,9292,0x1015248a0,1632,TypedArrayPrototypeReduceRight -code-creation,Builtin,2,9334,0x101524f20,3048,TypedArrayPrototypeSet -code-creation,Builtin,2,9334,0x101525b20,3720,TypedArrayPrototypeSlice -code-creation,Builtin,2,9334,0x1015269c0,1664,TypedArrayPrototypeSome -code-creation,Builtin,2,9334,0x101527060,980,TypedArrayMergeSort -code-creation,Builtin,2,9334,0x101527440,2160,TypedArrayPrototypeSort -code-creation,Builtin,2,9334,0x101527cc0,2812,TypedArrayPrototypeSubArray -code-creation,Builtin,2,9334,0x1015287c0,1580,TypedArrayPrototypeToReversed -code-creation,Builtin,2,9334,0x101528e00,3048,TypedArrayPrototypeToSorted -code-creation,Builtin,2,9334,0x101529a00,412,TypedArrayPrototypeValues -code-creation,Builtin,2,9334,0x101529ba0,2824,TypedArrayPrototypeWith -code-creation,Builtin,2,9375,0x10152a6c0,1100,WeakRefConstructor -code-creation,Builtin,2,9375,0x10152ab20,212,WeakRefDeref -code-creation,Builtin,2,9375,0x10152ac00,740,NewSloppyArgumentsElements -code-creation,Builtin,2,9375,0x10152af00,344,NewStrictArgumentsElements -code-creation,Builtin,2,9375,0x10152b060,376,NewRestArgumentsElements -code-creation,Builtin,2,9375,0x10152b1e0,1656,FastNewSloppyArguments -code-creation,Builtin,2,9375,0x10152b860,568,FastNewStrictArguments -code-creation,Builtin,2,9375,0x10152baa0,616,FastNewRestArguments -code-creation,Builtin,2,9375,0x10152bd20,648,StringSlowFlatten -code-creation,Builtin,2,9375,0x10152bfc0,2148,StringIndexOf -code-creation,Builtin,2,9417,0x10152c840,1340,TestTurbofanType -code-creation,Builtin,2,9417,0x10152cd80,208,CheckTurbofanType -code-creation,Builtin,2,9417,0x10152ce60,576,CheckTurboshaftWord32Type -code-creation,Builtin,2,9417,0x10152d0c0,1044,CheckTurboshaftWord64Type -code-creation,Builtin,2,9417,0x10152d4e0,656,CheckTurboshaftFloat32Type -code-creation,Builtin,2,9417,0x10152d780,636,CheckTurboshaftFloat64Type -code-creation,Builtin,2,9417,0x10152da00,8,GenericBuiltinTest_JSAny_0 -code-creation,Builtin,2,9417,0x10152da20,16,TestHelperPlus1 -code-creation,Builtin,2,9417,0x10152da40,16,TestHelperPlus2 -code-creation,Builtin,2,9417,0x10152da60,108,NewSmiBox -code-creation,Builtin,2,9417,0x10152dae0,20,ReturnTwoValues -code-creation,Builtin,2,9459,0x10152db00,44,Load_FastSmiElements_0 -code-creation,Builtin,2,9459,0x10152db40,44,Load_FastObjectElements_0 -code-creation,Builtin,2,9459,0x10152db80,164,Load_FastDoubleElements_0 -code-creation,Builtin,2,9459,0x10152dc40,48,Store_FastSmiElements_0 -code-creation,Builtin,2,9459,0x10152dc80,108,Store_FastObjectElements_0 -code-creation,Builtin,2,9459,0x10152dd00,56,Store_FastDoubleElements_0 -code-creation,Builtin,2,9459,0x10152dd40,52,Delete_FastSmiElements_0 -code-creation,Builtin,2,9459,0x10152dd80,52,Delete_FastObjectElements_0 -code-creation,Builtin,2,9459,0x10152ddc0,52,Delete_FastDoubleElements_0 -code-creation,Builtin,2,9459,0x10152de00,196,SortCompareDefault -code-creation,Builtin,2,9500,0x10152dee0,128,SortCompareUserFn -code-creation,Builtin,2,9500,0x10152df80,12,CanUseSameAccessor_GenericElementsAccessor_0 -code-creation,Builtin,2,9500,0x10152dfa0,328,Copy -code-creation,Builtin,2,9500,0x10152e100,5396,MergeAt -code-creation,Builtin,2,9500,0x10152f620,852,GallopLeft -code-creation,Builtin,2,9500,0x10152f980,888,GallopRight -code-creation,Builtin,2,9500,0x10152fd00,3684,ArrayTimSort -code-creation,Builtin,2,9500,0x101530b80,1768,ArrayPrototypeSort -code-creation,Builtin,2,9500,0x101531280,3936,StringFastLocaleCompare -code-creation,Builtin,2,9500,0x101532200,108,WasmInt32ToHeapNumber -code-creation,Builtin,2,9542,0x101532280,36,WasmFuncRefToJS -code-creation,Builtin,2,9542,0x1015322c0,84,WasmTaggedNonSmiToInt32 -code-creation,Builtin,2,9542,0x101532320,96,WasmTaggedToFloat64 -code-creation,Builtin,2,9542,0x1015323a0,96,WasmMemoryGrow -code-creation,Builtin,2,9542,0x101532420,100,WasmTableInit -code-creation,Builtin,2,9542,0x1015324a0,100,WasmTableCopy -code-creation,Builtin,2,9542,0x101532520,88,WasmTableFill -code-creation,Builtin,2,9542,0x101532580,72,WasmTableGrow -code-creation,Builtin,2,9542,0x1015325e0,120,WasmTableGet -code-creation,Builtin,2,9542,0x101532660,184,WasmTableSet -code-creation,Builtin,2,9542,0x101532720,188,WasmTableGetFuncRef -code-creation,Builtin,2,9584,0x1015327e0,128,WasmTableSetFuncRef -code-creation,Builtin,2,9584,0x101532880,96,WasmRefFunc -code-creation,Builtin,2,9584,0x101532900,172,WasmAllocateFixedArray -code-creation,Builtin,2,9584,0x1015329c0,40,WasmThrow -code-creation,Builtin,2,9584,0x101532a00,56,WasmRethrow -code-creation,Builtin,2,9584,0x101532a40,48,WasmRethrowExplicitContext -code-creation,Builtin,2,9584,0x101532a80,44,WasmTriggerTierUp -code-creation,Builtin,2,9584,0x101532ac0,28,WasmStackGuard -code-creation,Builtin,2,9584,0x101532ae0,28,WasmStackOverflow -code-creation,Builtin,2,9584,0x101532b00,40,WasmTraceMemory -code-creation,Builtin,2,9584,0x101532b40,28,WasmTraceEnter -code-creation,Builtin,2,9625,0x101532b60,40,WasmTraceExit -code-creation,Builtin,2,9625,0x101532ba0,380,WasmAllocateJSArray -code-creation,Builtin,2,9625,0x101532d20,128,WasmAllocateStructWithRtt -code-creation,Builtin,2,9625,0x101532dc0,172,WasmAllocateArray_Uninitialized -code-creation,Builtin,2,9625,0x101532e80,96,WasmArrayNewSegment -code-creation,Builtin,2,9625,0x101532f00,160,WasmArrayCopyWithChecks -code-creation,Builtin,2,9625,0x101532fc0,108,WasmArrayCopy -code-creation,Builtin,2,9625,0x101533040,292,WasmAllocateObjectWrapper -code-creation,Builtin,2,9625,0x101533180,80,WasmSubtypeCheck -code-creation,Builtin,2,9625,0x1015331e0,12,WasmInt32ToNumber -code-creation,Builtin,2,9667,0x101533200,124,WasmUint32ToNumber -code-creation,Builtin,2,9667,0x101533280,128,UintPtr53ToNumber -code-creation,Builtin,2,9667,0x101533320,120,WasmAtomicNotify -code-creation,Builtin,2,9667,0x1015333a0,124,WasmI32AtomicWait -code-creation,Builtin,2,9667,0x101533420,112,WasmI64AtomicWait -code-creation,Builtin,2,9667,0x1015334a0,1352,CallRefIC -code-creation,Builtin,2,9667,0x101533a00,1724,WasmGetOwnProperty -code-creation,Builtin,2,9667,0x1015340c0,80,WasmTrap -code-creation,Builtin,2,9667,0x101534120,12,ThrowWasmTrapUnreachable -code-creation,Builtin,2,9667,0x101534140,12,ThrowWasmTrapMemOutOfBounds -code-creation,Builtin,2,9709,0x101534160,12,ThrowWasmTrapUnalignedAccess -code-creation,Builtin,2,9709,0x101534180,12,ThrowWasmTrapDivByZero -code-creation,Builtin,2,9709,0x1015341a0,12,ThrowWasmTrapDivUnrepresentable -code-creation,Builtin,2,9709,0x1015341c0,12,ThrowWasmTrapRemByZero -code-creation,Builtin,2,9709,0x1015341e0,12,ThrowWasmTrapFloatUnrepresentable -code-creation,Builtin,2,9709,0x101534200,12,ThrowWasmTrapFuncSigMismatch -code-creation,Builtin,2,9709,0x101534220,12,ThrowWasmTrapDataSegmentOutOfBounds -code-creation,Builtin,2,9709,0x101534240,12,ThrowWasmTrapElementSegmentOutOfBounds -code-creation,Builtin,2,9709,0x101534260,12,ThrowWasmTrapTableOutOfBounds -code-creation,Builtin,2,9709,0x101534280,12,ThrowWasmTrapRethrowNull -code-creation,Builtin,2,9750,0x1015342a0,12,ThrowWasmTrapNullDereference -code-creation,Builtin,2,9750,0x1015342c0,12,ThrowWasmTrapIllegalCast -code-creation,Builtin,2,9750,0x1015342e0,12,ThrowWasmTrapArrayOutOfBounds -code-creation,Builtin,2,9750,0x101534300,12,ThrowWasmTrapArrayTooLarge -code-creation,Builtin,2,9750,0x101534320,12,ThrowWasmTrapStringOffsetOutOfBounds -code-creation,Builtin,2,9750,0x101534340,648,ExperimentalWasmConvertArrayToString -code-creation,Builtin,2,9750,0x1015345e0,936,ExperimentalWasmConvertStringToArray -code-creation,Builtin,2,9750,0x1015349a0,136,WasmStringNewWtf8 -code-creation,Builtin,2,9750,0x101534a40,144,WasmStringNewWtf8Array -code-creation,Builtin,2,9792,0x101534ae0,128,WasmStringNewWtf16 -code-creation,Builtin,2,9792,0x101534b80,1064,WasmStringNewWtf16Array -code-creation,Builtin,2,9792,0x101534fc0,80,WasmStringAsWtf16 -code-creation,Builtin,2,9792,0x101535020,44,WasmStringConst -code-creation,Builtin,2,9792,0x101535060,88,WasmStringMeasureUtf8 -code-creation,Builtin,2,9792,0x1015350c0,88,WasmStringMeasureWtf8 -code-creation,Builtin,2,9792,0x101535120,148,WasmStringEncodeWtf8 -code-creation,Builtin,2,9792,0x1015351c0,132,WasmStringEncodeWtf8Array -code-creation,Builtin,2,9792,0x101535260,136,WasmStringEncodeWtf16 -code-creation,Builtin,2,9792,0x101535300,824,WasmStringEncodeWtf16Array -code-creation,Builtin,2,9834,0x101535640,72,ThrowToLowerCaseCalledOnNull -code-creation,Builtin,2,9834,0x1015356a0,20,WasmStringConcat -code-creation,Builtin,2,9834,0x1015356c0,104,WasmStringEqual -code-creation,Builtin,2,9834,0x101535740,124,WasmStringIsUSVSequence -code-creation,Builtin,2,9834,0x1015357c0,40,WasmStringAsWtf8 -code-creation,Builtin,2,9834,0x101535800,332,WasmStringViewWtf8Advance -code-creation,Builtin,2,9834,0x101535960,212,WasmStringViewWtf8Encode -code-creation,Builtin,2,9875,0x101535a40,180,WasmStringViewWtf8Slice -code-creation,Builtin,2,9875,0x101535b00,588,WasmStringViewWtf16GetCodeUnit -code-creation,Builtin,2,9875,0x101535d60,176,WasmStringViewWtf16Encode -code-creation,Builtin,2,9875,0x101535e20,2752,WasmStringViewWtf16Slice -code-creation,Builtin,2,9875,0x101536900,112,WasmStringAsIter -code-creation,Builtin,2,9875,0x101536980,1200,WasmStringViewIterNext -code-creation,Builtin,2,9875,0x101536e40,1292,WasmStringViewIterAdvance -code-creation,Builtin,2,9875,0x101537360,1252,WasmStringViewIterRewind -code-creation,Builtin,2,9917,0x101537860,4132,WasmStringViewIterSlice -code-creation,Builtin,2,9917,0x1015388a0,72,WasmStringFromCodePoint -code-creation,Builtin,2,9917,0x101538900,64,WasmStringHash -code-creation,Builtin,2,9917,0x101538960,48,WasmExternInternalize -code-creation,Builtin,2,9917,0x1015389a0,156,LoadJoinElement_GenericElementsAccessor_0 -code-creation,Builtin,2,9917,0x101538a40,28,LoadJoinTypedElement_Int32Elements_0 -code-creation,Builtin,2,9917,0x101538a60,124,LoadJoinTypedElement_Float32Elements_0 -code-creation,Builtin,2,9917,0x101538ae0,120,LoadJoinTypedElement_Float64Elements_0 -code-creation,Builtin,2,9917,0x101538b60,28,LoadJoinTypedElement_Uint8ClampedElements_0 -code-creation,Builtin,2,9917,0x101538b80,232,LoadJoinTypedElement_BigUint64Elements_0 -code-creation,Builtin,2,9959,0x101538c80,264,LoadJoinTypedElement_BigInt64Elements_0 -code-creation,Builtin,2,9959,0x101538da0,28,LoadJoinTypedElement_Uint8Elements_0 -code-creation,Builtin,2,9959,0x101538dc0,28,LoadJoinTypedElement_Int8Elements_0 -code-creation,Builtin,2,9959,0x101538de0,28,LoadJoinTypedElement_Uint16Elements_0 -code-creation,Builtin,2,9959,0x101538e00,28,LoadJoinTypedElement_Int16Elements_0 -code-creation,Builtin,2,9959,0x101538e20,140,LoadJoinTypedElement_Uint32Elements_0 -code-creation,Builtin,2,9959,0x101538ec0,12,GenericBuiltinTest_Smi_0 -code-creation,Builtin,2,9959,0x101538ee0,52,CanUseSameAccessor_FastDoubleElements_0 -code-creation,Builtin,2,9959,0x101538f20,52,CanUseSameAccessor_FastSmiElements_0 -code-creation,Builtin,2,10000,0x101538f60,52,CanUseSameAccessor_FastObjectElements_0 -code-creation,Builtin,2,10000,0x101538fa0,40,LoadNoHasPropertyCheck_GenericElementsAccessor_0 -code-creation,Builtin,2,10000,0x101538fe0,3880,Load_GenericElementsAccessor_0 -code-creation,Builtin,2,10000,0x101539f20,44,Store_GenericElementsAccessor_0 -code-creation,Builtin,2,10000,0x101539f60,48,Delete_GenericElementsAccessor_0 -code-creation,Builtin,2,10000,0x101539fa0,28,LoadTypedElement_Int32Elements_0 -code-creation,Builtin,2,10000,0x101539fc0,180,StoreTypedElementNumeric_Int32Elements_0 -code-creation,Builtin,2,10000,0x10153a080,536,StoreTypedElementJSAny_Int32Elements_0 -code-creation,Builtin,2,10042,0x10153a2a0,124,LoadTypedElement_Float32Elements_0 -code-creation,Builtin,2,10042,0x10153a320,36,StoreTypedElementNumeric_Float32Elements_0 -code-creation,Builtin,2,10042,0x10153a360,540,StoreTypedElementJSAny_Float32Elements_0 -code-creation,Builtin,2,10042,0x10153a580,120,LoadTypedElement_Float64Elements_0 -code-creation,Builtin,2,10042,0x10153a600,32,StoreTypedElementNumeric_Float64Elements_0 -code-creation,Builtin,2,10042,0x10153a640,536,StoreTypedElementJSAny_Float64Elements_0 -code-creation,Builtin,2,10084,0x10153a860,28,LoadTypedElement_Uint8ClampedElements_0 -code-creation,Builtin,2,10084,0x10153a880,32,StoreTypedElementNumeric_Uint8ClampedElements_0 -code-creation,Builtin,2,10084,0x10153a8c0,616,StoreTypedElementJSAny_Uint8ClampedElements_0 -code-creation,Builtin,2,10084,0x10153ab40,232,LoadTypedElement_BigUint64Elements_0 -code-creation,Builtin,2,10084,0x10153ac40,72,StoreTypedElementNumeric_BigUint64Elements_0 -code-creation,Builtin,2,10084,0x10153aca0,572,StoreTypedElementJSAny_BigUint64Elements_0 -code-creation,Builtin,2,10084,0x10153aee0,264,LoadTypedElement_BigInt64Elements_0 -code-creation,Builtin,2,10084,0x10153b000,72,StoreTypedElementNumeric_BigInt64Elements_0 -code-creation,Builtin,2,10084,0x10153b060,572,StoreTypedElementJSAny_BigInt64Elements_0 -code-creation,Builtin,2,10125,0x10153b2a0,28,LoadTypedElement_Uint8Elements_0 -code-creation,Builtin,2,10125,0x10153b2c0,32,StoreTypedElementNumeric_Uint8Elements_0 -code-creation,Builtin,2,10125,0x10153b300,536,StoreTypedElementJSAny_Uint8Elements_0 -code-creation,Builtin,2,10125,0x10153b520,28,LoadTypedElement_Int8Elements_0 -code-creation,Builtin,2,10125,0x10153b540,32,StoreTypedElementNumeric_Int8Elements_0 -code-creation,Builtin,2,10125,0x10153b580,536,StoreTypedElementJSAny_Int8Elements_0 -code-creation,Builtin,2,10125,0x10153b7a0,28,LoadTypedElement_Uint16Elements_0 -code-creation,Builtin,2,10125,0x10153b7c0,32,StoreTypedElementNumeric_Uint16Elements_0 -code-creation,Builtin,2,10125,0x10153b800,536,StoreTypedElementJSAny_Uint16Elements_0 -code-creation,Builtin,2,10125,0x10153ba20,28,LoadTypedElement_Int16Elements_0 -code-creation,Builtin,2,10167,0x10153ba40,32,StoreTypedElementNumeric_Int16Elements_0 -code-creation,Builtin,2,10167,0x10153ba80,536,StoreTypedElementJSAny_Int16Elements_0 -code-creation,Builtin,2,10167,0x10153bca0,140,LoadTypedElement_Uint32Elements_0 -code-creation,Builtin,2,10167,0x10153bd40,180,StoreTypedElementNumeric_Uint32Elements_0 -code-creation,Builtin,2,10167,0x10153be00,536,StoreTypedElementJSAny_Uint32Elements_0 -code-creation,Builtin,2,10167,0x10153c020,8,CollatorConstructor -code-creation,Builtin,2,10167,0x10153c040,8,CollatorInternalCompare -code-creation,Builtin,2,10167,0x10153c060,8,CollatorPrototypeCompare -code-creation,Builtin,2,10167,0x10153c080,8,CollatorSupportedLocalesOf -code-creation,Builtin,2,10209,0x10153c0a0,8,CollatorPrototypeResolvedOptions -code-creation,Builtin,2,10209,0x10153c0c0,8,DatePrototypeToLocaleDateString -code-creation,Builtin,2,10209,0x10153c0e0,8,DatePrototypeToLocaleString -code-creation,Builtin,2,10209,0x10153c100,8,DatePrototypeToLocaleTimeString -code-creation,Builtin,2,10209,0x10153c120,8,DateTimeFormatConstructor -code-creation,Builtin,2,10209,0x10153c140,8,DateTimeFormatInternalFormat -code-creation,Builtin,2,10209,0x10153c160,8,DateTimeFormatPrototypeFormat -code-creation,Builtin,2,10209,0x10153c180,8,DateTimeFormatPrototypeFormatRange -code-creation,Builtin,2,10209,0x10153c1a0,8,DateTimeFormatPrototypeFormatRangeToParts -code-creation,Builtin,2,10209,0x10153c1c0,8,DateTimeFormatPrototypeFormatToParts -code-creation,Builtin,2,10250,0x10153c1e0,8,DateTimeFormatPrototypeResolvedOptions -code-creation,Builtin,2,10250,0x10153c200,8,DateTimeFormatSupportedLocalesOf -code-creation,Builtin,2,10250,0x10153c220,8,DisplayNamesConstructor -code-creation,Builtin,2,10250,0x10153c240,8,DisplayNamesPrototypeOf -code-creation,Builtin,2,10250,0x10153c260,8,DisplayNamesPrototypeResolvedOptions -code-creation,Builtin,2,10250,0x10153c280,8,DisplayNamesSupportedLocalesOf -code-creation,Builtin,2,10250,0x10153c2a0,8,DurationFormatConstructor -code-creation,Builtin,2,10250,0x10153c2c0,8,DurationFormatPrototypeFormat -code-creation,Builtin,2,10250,0x10153c2e0,8,DurationFormatPrototypeFormatToParts -code-creation,Builtin,2,10292,0x10153c300,8,DurationFormatPrototypeResolvedOptions -code-creation,Builtin,2,10292,0x10153c320,8,DurationFormatSupportedLocalesOf -code-creation,Builtin,2,10292,0x10153c340,8,IntlGetCanonicalLocales -code-creation,Builtin,2,10292,0x10153c360,8,IntlSupportedValuesOf -code-creation,Builtin,2,10292,0x10153c380,8,ListFormatConstructor -code-creation,Builtin,2,10292,0x10153c3a0,240,ListFormatPrototypeFormat -code-creation,Builtin,2,10292,0x10153c4a0,240,ListFormatPrototypeFormatToParts -code-creation,Builtin,2,10292,0x10153c5a0,8,ListFormatPrototypeResolvedOptions -code-creation,Builtin,2,10292,0x10153c5c0,8,ListFormatSupportedLocalesOf -code-creation,Builtin,2,10292,0x10153c5e0,8,LocaleConstructor -code-creation,Builtin,2,10334,0x10153c600,8,LocalePrototypeBaseName -code-creation,Builtin,2,10334,0x10153c620,8,LocalePrototypeCalendar -code-creation,Builtin,2,10334,0x10153c640,8,LocalePrototypeCalendars -code-creation,Builtin,2,10334,0x10153c660,8,LocalePrototypeCaseFirst -code-creation,Builtin,2,10334,0x10153c680,8,LocalePrototypeCollation -code-creation,Builtin,2,10334,0x10153c6a0,8,LocalePrototypeCollations -code-creation,Builtin,2,10334,0x10153c6c0,8,LocalePrototypeHourCycle -code-creation,Builtin,2,10334,0x10153c6e0,8,LocalePrototypeHourCycles -code-creation,Builtin,2,10334,0x10153c700,8,LocalePrototypeLanguage -code-creation,Builtin,2,10334,0x10153c720,8,LocalePrototypeMaximize -code-creation,Builtin,2,10375,0x10153c740,8,LocalePrototypeMinimize -code-creation,Builtin,2,10375,0x10153c760,8,LocalePrototypeNumeric -code-creation,Builtin,2,10375,0x10153c780,8,LocalePrototypeNumberingSystem -code-creation,Builtin,2,10375,0x10153c7a0,8,LocalePrototypeNumberingSystems -code-creation,Builtin,2,10375,0x10153c7c0,8,LocalePrototypeRegion -code-creation,Builtin,2,10375,0x10153c7e0,8,LocalePrototypeScript -code-creation,Builtin,2,10375,0x10153c800,8,LocalePrototypeTextInfo -code-creation,Builtin,2,10375,0x10153c820,8,LocalePrototypeTimeZones -code-creation,Builtin,2,10375,0x10153c840,8,LocalePrototypeToString -code-creation,Builtin,2,10375,0x10153c860,8,LocalePrototypeWeekInfo -code-creation,Builtin,2,10375,0x10153c880,8,NumberFormatConstructor -code-creation,Builtin,2,10417,0x10153c8a0,8,NumberFormatInternalFormatNumber -code-creation,Builtin,2,10417,0x10153c8c0,8,NumberFormatPrototypeFormatNumber -code-creation,Builtin,2,10417,0x10153c8e0,8,NumberFormatPrototypeFormatRange -code-creation,Builtin,2,10417,0x10153c900,8,NumberFormatPrototypeFormatRangeToParts -code-creation,Builtin,2,10417,0x10153c920,8,NumberFormatPrototypeFormatToParts -code-creation,Builtin,2,10417,0x10153c940,8,NumberFormatPrototypeResolvedOptions -code-creation,Builtin,2,10417,0x10153c960,8,NumberFormatSupportedLocalesOf -code-creation,Builtin,2,10417,0x10153c980,8,PluralRulesConstructor -code-creation,Builtin,2,10417,0x10153c9a0,8,PluralRulesPrototypeResolvedOptions -code-creation,Builtin,2,10459,0x10153c9c0,8,PluralRulesPrototypeSelect -code-creation,Builtin,2,10459,0x10153c9e0,8,PluralRulesPrototypeSelectRange -code-creation,Builtin,2,10459,0x10153ca00,8,PluralRulesSupportedLocalesOf -code-creation,Builtin,2,10459,0x10153ca20,8,RelativeTimeFormatConstructor -code-creation,Builtin,2,10459,0x10153ca40,8,RelativeTimeFormatPrototypeFormat -code-creation,Builtin,2,10459,0x10153ca60,8,RelativeTimeFormatPrototypeFormatToParts -code-creation,Builtin,2,10459,0x10153ca80,8,RelativeTimeFormatPrototypeResolvedOptions -code-creation,Builtin,2,10459,0x10153caa0,8,RelativeTimeFormatSupportedLocalesOf -code-creation,Builtin,2,10459,0x10153cac0,8,SegmenterConstructor -code-creation,Builtin,2,10459,0x10153cae0,8,SegmenterPrototypeResolvedOptions -code-creation,Builtin,2,10500,0x10153cb00,8,SegmenterPrototypeSegment -code-creation,Builtin,2,10500,0x10153cb20,8,SegmenterSupportedLocalesOf -code-creation,Builtin,2,10500,0x10153cb40,8,SegmentIteratorPrototypeNext -code-creation,Builtin,2,10500,0x10153cb60,8,SegmentsPrototypeContaining -code-creation,Builtin,2,10500,0x10153cb80,8,SegmentsPrototypeIterator -code-creation,Builtin,2,10500,0x10153cba0,8,StringPrototypeNormalizeIntl -code-creation,Builtin,2,10500,0x10153cbc0,1156,StringPrototypeToLocaleLowerCase -code-creation,Builtin,2,10500,0x10153d060,8,StringPrototypeToLocaleUpperCase -code-creation,Builtin,2,10500,0x10153d080,216,StringPrototypeToLowerCaseIntl -code-creation,Builtin,2,10542,0x10153d160,8,StringPrototypeToUpperCaseIntl -code-creation,Builtin,2,10542,0x10153d180,728,StringToLowerCaseIntl -code-creation,Builtin,2,10542,0x10153d460,8,TemporalCalendarPrototypeEra -code-creation,Builtin,2,10542,0x10153d480,8,TemporalCalendarPrototypeEraYear -code-creation,Builtin,2,10542,0x10153d4a0,8,TemporalPlainDatePrototypeEra -code-creation,Builtin,2,10542,0x10153d4c0,8,TemporalPlainDatePrototypeEraYear -code-creation,Builtin,2,10542,0x10153d4e0,8,TemporalPlainDateTimePrototypeEra -code-creation,Builtin,2,10542,0x10153d500,8,TemporalPlainDateTimePrototypeEraYear -code-creation,Builtin,2,10542,0x10153d520,8,TemporalPlainYearMonthPrototypeEra -code-creation,Builtin,2,10542,0x10153d540,8,TemporalPlainYearMonthPrototypeEraYear -code-creation,Builtin,2,10584,0x10153d560,8,TemporalZonedDateTimePrototypeEra -code-creation,Builtin,2,10584,0x10153d580,8,TemporalZonedDateTimePrototypeEraYear -code-creation,Builtin,2,10584,0x10153d5a0,8,V8BreakIteratorConstructor -code-creation,Builtin,2,10584,0x10153d5c0,8,V8BreakIteratorInternalAdoptText -code-creation,Builtin,2,10584,0x10153d5e0,8,V8BreakIteratorInternalBreakType -code-creation,Builtin,2,10584,0x10153d600,8,V8BreakIteratorInternalCurrent -code-creation,Builtin,2,10584,0x10153d620,8,V8BreakIteratorInternalFirst -code-creation,Builtin,2,10584,0x10153d640,8,V8BreakIteratorInternalNext -code-creation,Builtin,2,10584,0x10153d660,8,V8BreakIteratorPrototypeAdoptText -code-creation,Builtin,2,10584,0x10153d680,8,V8BreakIteratorPrototypeBreakType -code-creation,Builtin,2,10625,0x10153d6a0,8,V8BreakIteratorPrototypeCurrent -code-creation,Builtin,2,10625,0x10153d6c0,8,V8BreakIteratorPrototypeFirst -code-creation,Builtin,2,10625,0x10153d6e0,8,V8BreakIteratorPrototypeNext -code-creation,Builtin,2,10625,0x10153d700,8,V8BreakIteratorPrototypeResolvedOptions -code-creation,Builtin,2,10625,0x10153d720,8,V8BreakIteratorSupportedLocalesOf -code-creation,BytecodeHandler,0,10625,0x10153d740,28,Wide -code-creation,BytecodeHandler,0,10625,0x10153d760,28,ExtraWide -code-creation,BytecodeHandler,0,10625,0x10153d780,124,DebugBreakWide -code-creation,BytecodeHandler,0,10625,0x10153d800,124,DebugBreakExtraWide -code-creation,BytecodeHandler,0,10625,0x10153d880,188,DebugBreak0 -code-creation,BytecodeHandler,0,10667,0x10153d940,124,DebugBreak1 -code-creation,BytecodeHandler,0,10667,0x10153d9c0,124,DebugBreak2 -code-creation,BytecodeHandler,0,10667,0x10153da40,124,DebugBreak3 -code-creation,BytecodeHandler,0,10667,0x10153dac0,124,DebugBreak4 -code-creation,BytecodeHandler,0,10667,0x10153db40,124,DebugBreak5 -code-creation,BytecodeHandler,0,10667,0x10153dbc0,124,DebugBreak6 -code-creation,BytecodeHandler,0,10667,0x10153dc40,44,Ldar -code-creation,BytecodeHandler,0,10667,0x10153dc80,76,LdaZero -code-creation,BytecodeHandler,0,10667,0x10153dce0,84,LdaSmi -code-creation,BytecodeHandler,0,10667,0x10153dd40,76,LdaUndefined -code-creation,BytecodeHandler,0,10667,0x10153dda0,76,LdaNull -code-creation,BytecodeHandler,0,10709,0x10153de00,76,LdaTheHole -code-creation,BytecodeHandler,0,10709,0x10153de60,28,LdaTrue -code-creation,BytecodeHandler,0,10709,0x10153de80,28,LdaFalse -code-creation,BytecodeHandler,0,10709,0x10153dea0,92,LdaConstant -code-creation,BytecodeHandler,0,10709,0x10153df00,176,LdaContextSlot -code-creation,BytecodeHandler,0,10709,0x10153dfc0,176,LdaImmutableContextSlot -code-creation,BytecodeHandler,0,10709,0x10153e080,108,LdaCurrentContextSlot -code-creation,BytecodeHandler,0,10709,0x10153e100,108,LdaImmutableCurrentContextSlot -code-creation,BytecodeHandler,0,10709,0x10153e180,44,Star -code-creation,BytecodeHandler,0,10709,0x10153e1c0,60,Mov -code-creation,BytecodeHandler,0,10709,0x10153e200,52,PushContext -code-creation,BytecodeHandler,0,10750,0x10153e240,48,PopContext -code-creation,BytecodeHandler,0,10750,0x10153e280,64,TestReferenceEqual -code-creation,BytecodeHandler,0,10750,0x10153e2e0,64,TestUndetectable -code-creation,BytecodeHandler,0,10750,0x10153e340,52,TestNull -code-creation,BytecodeHandler,0,10750,0x10153e380,52,TestUndefined -code-creation,BytecodeHandler,0,10750,0x10153e3c0,388,TestTypeOf -code-creation,BytecodeHandler,0,10750,0x10153e560,6164,LdaGlobal -code-creation,BytecodeHandler,0,10750,0x10153fd80,4648,LdaGlobalInsideTypeof -code-creation,BytecodeHandler,0,10750,0x101540fc0,184,StaGlobal -code-creation,BytecodeHandler,0,10750,0x101541080,192,StaContextSlot -code-creation,BytecodeHandler,0,10792,0x101541160,124,StaCurrentContextSlot -code-creation,BytecodeHandler,0,10792,0x1015411e0,152,LdaLookupSlot -code-creation,BytecodeHandler,0,10792,0x101541280,316,LdaLookupContextSlot -code-creation,BytecodeHandler,0,10792,0x1015413c0,4992,LdaLookupGlobalSlot -code-creation,BytecodeHandler,0,10792,0x101542760,152,LdaLookupSlotInsideTypeof -code-creation,BytecodeHandler,0,10792,0x101542800,316,LdaLookupContextSlotInsideTypeof -code-creation,BytecodeHandler,0,10792,0x101542940,4908,LdaLookupGlobalSlotInsideTypeof -code-creation,BytecodeHandler,0,10792,0x101543c80,256,StaLookupSlot -code-creation,BytecodeHandler,0,10792,0x101543da0,5260,GetNamedProperty -code-creation,BytecodeHandler,0,10792,0x101545240,208,GetNamedPropertyFromSuper -code-creation,BytecodeHandler,0,10792,0x101545320,232,GetKeyedProperty -code-creation,BytecodeHandler,0,10834,0x101545420,228,LdaModuleVariable -code-creation,BytecodeHandler,0,10834,0x101545520,348,StaModuleVariable -code-creation,BytecodeHandler,0,10834,0x101545680,200,SetNamedProperty -code-creation,BytecodeHandler,0,10834,0x101545760,200,DefineNamedOwnProperty -code-creation,BytecodeHandler,0,10834,0x101545840,192,SetKeyedProperty -code-creation,BytecodeHandler,0,10834,0x101545920,212,DefineKeyedOwnProperty -code-creation,BytecodeHandler,0,10834,0x101545a00,192,StaInArrayLiteral -code-creation,BytecodeHandler,0,10834,0x101545ae0,228,DefineKeyedOwnPropertyInLiteral -code-creation,BytecodeHandler,0,10834,0x101545be0,1424,Add -code-creation,BytecodeHandler,0,10834,0x101546180,1396,Sub -code-creation,BytecodeHandler,0,10875,0x101546700,1500,Mul -code-creation,BytecodeHandler,0,10875,0x101546ce0,1532,Div -code-creation,BytecodeHandler,0,10875,0x1015472e0,1464,Mod -code-creation,BytecodeHandler,0,10875,0x1015478a0,864,Exp -code-creation,BytecodeHandler,0,10875,0x101547c20,1624,BitwiseOr -code-creation,BytecodeHandler,0,10875,0x101548280,1624,BitwiseXor -code-creation,BytecodeHandler,0,10875,0x1015488e0,1624,BitwiseAnd -code-creation,BytecodeHandler,0,10875,0x101548f40,1092,ShiftLeft -code-creation,BytecodeHandler,0,10875,0x1015493a0,1092,ShiftRight -code-creation,BytecodeHandler,0,10875,0x101549800,1156,ShiftRightLogical -code-creation,BytecodeHandler,0,10875,0x101549ca0,1344,AddSmi -code-creation,BytecodeHandler,0,10917,0x10154a200,1368,SubSmi -code-creation,BytecodeHandler,0,10917,0x10154a760,1420,MulSmi -code-creation,BytecodeHandler,0,10917,0x10154ad00,1568,DivSmi -code-creation,BytecodeHandler,0,10917,0x10154b340,1392,ModSmi -code-creation,BytecodeHandler,0,10917,0x10154b8c0,776,ExpSmi -code-creation,BytecodeHandler,0,10917,0x10154bbe0,468,BitwiseOrSmi -code-creation,BytecodeHandler,0,10917,0x10154bdc0,468,BitwiseXorSmi -code-creation,BytecodeHandler,0,10917,0x10154bfa0,468,BitwiseAndSmi -code-creation,BytecodeHandler,0,10917,0x10154c180,496,ShiftLeftSmi -code-creation,BytecodeHandler,0,10917,0x10154c380,476,ShiftRightSmi -code-creation,BytecodeHandler,0,10917,0x10154c560,780,ShiftRightLogicalSmi -code-creation,BytecodeHandler,0,10959,0x10154c880,668,Inc -code-creation,BytecodeHandler,0,10959,0x10154cb20,668,Dec -code-creation,BytecodeHandler,0,10959,0x10154cdc0,640,Negate -code-creation,BytecodeHandler,0,10959,0x10154d060,476,BitwiseNot -code-creation,BytecodeHandler,0,10959,0x10154d240,144,ToBooleanLogicalNot -code-creation,BytecodeHandler,0,10959,0x10154d2e0,44,LogicalNot -code-creation,BytecodeHandler,0,10959,0x10154d320,216,TypeOf -code-creation,BytecodeHandler,0,10959,0x10154d400,136,DeletePropertyStrict -code-creation,BytecodeHandler,0,11000,0x10154d4a0,136,DeletePropertySloppy -code-creation,BytecodeHandler,0,11000,0x10154d540,52,GetSuperConstructor -code-creation,BytecodeHandler,0,11000,0x10154d580,368,FindNonDefaultConstructorOrConstruct -code-creation,BytecodeHandler,0,11000,0x10154d700,916,CallAnyReceiver -code-creation,BytecodeHandler,0,11000,0x10154daa0,916,CallProperty -code-creation,BytecodeHandler,0,11000,0x10154de40,936,CallProperty0 -code-creation,BytecodeHandler,0,11000,0x10154e200,948,CallProperty1 -code-creation,BytecodeHandler,0,11000,0x10154e5c0,968,CallProperty2 -code-creation,BytecodeHandler,0,11000,0x10154e9a0,920,CallUndefinedReceiver -code-creation,BytecodeHandler,0,11000,0x10154ed40,912,CallUndefinedReceiver0 -code-creation,BytecodeHandler,0,11042,0x10154f0e0,924,CallUndefinedReceiver1 -code-creation,BytecodeHandler,0,11042,0x10154f480,944,CallUndefinedReceiver2 -code-creation,BytecodeHandler,0,11042,0x10154f840,916,CallWithSpread -code-creation,BytecodeHandler,0,11042,0x10154fbe0,144,CallRuntime -code-creation,BytecodeHandler,0,11042,0x10154fc80,188,CallRuntimeForPair -code-creation,BytecodeHandler,0,11042,0x10154fd40,100,CallJSRuntime -code-creation,BytecodeHandler,0,11042,0x10154fdc0,1404,InvokeIntrinsic -code-creation,BytecodeHandler,0,11042,0x101550340,944,Construct -code-creation,BytecodeHandler,0,11042,0x101550700,492,ConstructWithSpread -code-creation,BytecodeHandler,0,11042,0x101550900,2268,TestEqual -code-creation,BytecodeHandler,0,11084,0x1015511e0,1160,TestEqualStrict -code-creation,BytecodeHandler,0,11084,0x101551680,1740,TestLessThan -code-creation,BytecodeHandler,0,11084,0x101551d60,1740,TestGreaterThan -code-creation,BytecodeHandler,0,11084,0x101552440,1740,TestLessThanOrEqual -code-creation,BytecodeHandler,0,11084,0x101552b20,1740,TestGreaterThanOrEqual -code-creation,BytecodeHandler,0,11084,0x101553200,848,TestInstanceOf -code-creation,BytecodeHandler,0,11084,0x101553560,176,TestIn -code-creation,BytecodeHandler,0,11084,0x101553620,132,ToName -code-creation,BytecodeHandler,0,11084,0x1015536c0,236,ToNumber -code-creation,BytecodeHandler,0,11084,0x1015537c0,256,ToNumeric -code-creation,BytecodeHandler,0,11125,0x1015538e0,132,ToObject -code-creation,BytecodeHandler,0,11125,0x101553980,156,ToString -code-creation,BytecodeHandler,0,11125,0x101553a20,444,CreateRegExpLiteral -code-creation,BytecodeHandler,0,11125,0x101553be0,1576,CreateArrayLiteral -code-creation,BytecodeHandler,0,11125,0x101554220,108,CreateArrayFromIterable -tick,0x1957a20c4,11167,0,0x0,6 -tick,0x1957a20c4,11167,0,0x0,6 -code-creation,BytecodeHandler,0,11167,0x1015542a0,776,CreateEmptyArrayLiteral -code-creation,BytecodeHandler,0,11167,0x1015545c0,2356,CreateObjectLiteral -code-creation,BytecodeHandler,0,11167,0x101554f00,272,CreateEmptyObjectLiteral -code-creation,BytecodeHandler,0,11167,0x101555020,192,CloneObject -code-creation,BytecodeHandler,0,11209,0x101555100,240,GetTemplateObject -code-creation,BytecodeHandler,0,11209,0x101555200,380,CreateClosure -code-creation,BytecodeHandler,0,11209,0x101555380,140,CreateBlockContext -code-creation,BytecodeHandler,0,11209,0x101555420,152,CreateCatchContext -code-creation,BytecodeHandler,0,11209,0x1015554c0,344,CreateFunctionContext -code-creation,BytecodeHandler,0,11209,0x101555620,344,CreateEvalContext -code-creation,BytecodeHandler,0,11209,0x101555780,152,CreateWithContext -code-creation,BytecodeHandler,0,11209,0x101555820,1944,CreateMappedArguments -code-creation,BytecodeHandler,0,11209,0x101555fc0,640,CreateUnmappedArguments -code-creation,BytecodeHandler,0,11209,0x101556260,688,CreateRestParameter -code-creation,BytecodeHandler,0,11250,0x101556520,920,JumpLoop -code-creation,BytecodeHandler,0,11250,0x1015568c0,60,Jump -code-creation,BytecodeHandler,0,11250,0x101556900,80,JumpConstant -code-creation,BytecodeHandler,0,11250,0x101556960,112,JumpIfNullConstant -code-creation,BytecodeHandler,0,11250,0x1015569e0,112,JumpIfNotNullConstant -code-creation,BytecodeHandler,0,11250,0x101556a60,112,JumpIfUndefinedConstant -code-creation,BytecodeHandler,0,11250,0x101556ae0,112,JumpIfNotUndefinedConstant -code-creation,BytecodeHandler,0,11250,0x101556b60,124,JumpIfUndefinedOrNullConstant -code-creation,BytecodeHandler,0,11292,0x101556be0,112,JumpIfTrueConstant -code-creation,BytecodeHandler,0,11292,0x101556c60,112,JumpIfFalseConstant -code-creation,BytecodeHandler,0,11292,0x101556ce0,120,JumpIfJSReceiverConstant -code-creation,BytecodeHandler,0,11292,0x101556d60,208,JumpIfToBooleanTrueConstant -code-creation,BytecodeHandler,0,11292,0x101556e40,208,JumpIfToBooleanFalseConstant -code-creation,BytecodeHandler,0,11292,0x101556f20,188,JumpIfToBooleanTrue -code-creation,BytecodeHandler,0,11292,0x101556fe0,188,JumpIfToBooleanFalse -code-creation,BytecodeHandler,0,11334,0x1015570a0,92,JumpIfTrue -code-creation,BytecodeHandler,0,11334,0x101557100,92,JumpIfFalse -code-creation,BytecodeHandler,0,11334,0x101557160,92,JumpIfNull -code-creation,BytecodeHandler,0,11334,0x1015571c0,92,JumpIfNotNull -code-creation,BytecodeHandler,0,11334,0x101557220,92,JumpIfUndefined -code-creation,BytecodeHandler,0,11334,0x101557280,92,JumpIfNotUndefined -code-creation,BytecodeHandler,0,11334,0x1015572e0,104,JumpIfUndefinedOrNull -code-creation,BytecodeHandler,0,11334,0x101557360,100,JumpIfJSReceiver -code-creation,BytecodeHandler,0,11334,0x1015573e0,140,SwitchOnSmiNoFeedback -code-creation,BytecodeHandler,0,11375,0x101557480,536,ForInEnumerate -code-creation,BytecodeHandler,0,11375,0x1015576a0,268,ForInPrepare -code-creation,BytecodeHandler,0,11375,0x1015577c0,76,ForInContinue -code-creation,BytecodeHandler,0,11375,0x101557820,304,ForInNext -code-creation,BytecodeHandler,0,11375,0x101557960,48,ForInStep -code-creation,BytecodeHandler,0,11375,0x1015579a0,36,SetPendingMessage -code-creation,BytecodeHandler,0,11375,0x1015579e0,132,Throw -code-creation,BytecodeHandler,0,11375,0x101557a80,132,ReThrow -code-creation,BytecodeHandler,0,11375,0x101557b20,132,Return -code-creation,BytecodeHandler,0,11375,0x101557bc0,232,ThrowReferenceErrorIfHole -code-creation,BytecodeHandler,0,11375,0x101557cc0,152,ThrowSuperNotCalledIfHole -code-creation,BytecodeHandler,0,11417,0x101557d60,152,ThrowSuperAlreadyCalledIfNotHole -code-creation,BytecodeHandler,0,11417,0x101557e00,176,ThrowIfNotSuperConstructor -code-creation,BytecodeHandler,0,11417,0x101557ec0,148,SwitchOnGeneratorState -code-creation,BytecodeHandler,0,11417,0x101557f60,520,SuspendGenerator -tick,0x1957a20c4,11417,0,0x0,6 -code-creation,BytecodeHandler,0,11459,0x101558180,176,ResumeGenerator -code-creation,BytecodeHandler,0,11500,0x101558240,180,GetIterator -code-creation,BytecodeHandler,0,11500,0x101558300,128,Debugger -code-creation,BytecodeHandler,0,11500,0x1015583a0,136,IncBlockCounter -code-creation,BytecodeHandler,0,11500,0x101558440,76,Abort -code-creation,BytecodeHandler,0,11500,0x1015584a0,44,Star0 -code-creation,BytecodeHandler,0,11500,0x1015584e0,72,Illegal -code-creation,BytecodeHandler,0,11500,0x101558540,128,DebugBreak1.Wide -code-creation,BytecodeHandler,0,11500,0x1015585e0,128,DebugBreak2.Wide -code-creation,BytecodeHandler,0,11500,0x101558680,128,DebugBreak3.Wide -code-creation,BytecodeHandler,0,11500,0x101558720,128,DebugBreak4.Wide -code-creation,BytecodeHandler,0,11542,0x1015587c0,128,DebugBreak5.Wide -code-creation,BytecodeHandler,0,11542,0x101558860,128,DebugBreak6.Wide -code-creation,BytecodeHandler,0,11542,0x101558900,44,Ldar.Wide -code-creation,BytecodeHandler,0,11542,0x101558940,40,LdaSmi.Wide -code-creation,BytecodeHandler,0,11542,0x101558980,48,LdaConstant.Wide -code-creation,BytecodeHandler,0,11542,0x1015589c0,136,LdaContextSlot.Wide -code-creation,BytecodeHandler,0,11542,0x101558a60,136,LdaImmutableContextSlot.Wide -code-creation,BytecodeHandler,0,11542,0x101558b00,68,LdaCurrentContextSlot.Wide -code-creation,BytecodeHandler,0,11542,0x101558b60,68,LdaImmutableCurrentContextSlot.Wide -code-creation,BytecodeHandler,0,11542,0x101558bc0,44,Star.Wide -code-creation,BytecodeHandler,0,11584,0x101558c00,60,Mov.Wide -code-creation,BytecodeHandler,0,11584,0x101558c40,52,PushContext.Wide -code-creation,BytecodeHandler,0,11584,0x101558c80,48,PopContext.Wide -code-creation,BytecodeHandler,0,11584,0x101558cc0,64,TestReferenceEqual.Wide -code-creation,BytecodeHandler,0,11584,0x101558d20,4796,LdaGlobal.Wide -code-creation,BytecodeHandler,0,11584,0x101559fe0,4708,LdaGlobalInsideTypeof.Wide -code-creation,BytecodeHandler,0,11584,0x10155b260,188,StaGlobal.Wide -code-creation,BytecodeHandler,0,11584,0x10155b320,192,StaContextSlot.Wide -code-creation,BytecodeHandler,0,11584,0x10155b400,124,StaCurrentContextSlot.Wide -code-creation,BytecodeHandler,0,11625,0x10155b480,156,LdaLookupSlot.Wide -code-creation,BytecodeHandler,0,11625,0x10155b520,320,LdaLookupContextSlot.Wide -code-creation,BytecodeHandler,0,11625,0x10155b680,4996,LdaLookupGlobalSlot.Wide -code-creation,BytecodeHandler,0,11625,0x10155ca20,156,LdaLookupSlotInsideTypeof.Wide -code-creation,BytecodeHandler,0,11625,0x10155cac0,320,LdaLookupContextSlotInsideTypeof.Wide -code-creation,BytecodeHandler,0,11625,0x10155cc20,4912,LdaLookupGlobalSlotInsideTypeof.Wide -code-creation,BytecodeHandler,0,11625,0x10155df60,252,StaLookupSlot.Wide -code-creation,BytecodeHandler,0,11625,0x10155e060,5288,GetNamedProperty.Wide -code-creation,BytecodeHandler,0,11625,0x10155f520,212,GetNamedPropertyFromSuper.Wide -code-creation,BytecodeHandler,0,11625,0x10155f600,180,GetKeyedProperty.Wide -code-creation,BytecodeHandler,0,11667,0x10155f6c0,228,LdaModuleVariable.Wide -code-creation,BytecodeHandler,0,11667,0x10155f7c0,352,StaModuleVariable.Wide -code-creation,BytecodeHandler,0,11667,0x10155f940,204,SetNamedProperty.Wide -code-creation,BytecodeHandler,0,11667,0x10155fa20,204,DefineNamedOwnProperty.Wide -code-creation,BytecodeHandler,0,11667,0x10155fb00,196,SetKeyedProperty.Wide -code-creation,BytecodeHandler,0,11667,0x10155fbe0,216,DefineKeyedOwnProperty.Wide -code-creation,BytecodeHandler,0,11667,0x10155fcc0,196,StaInArrayLiteral.Wide -code-creation,BytecodeHandler,0,11667,0x10155fda0,232,DefineKeyedOwnPropertyInLiteral.Wide -code-creation,BytecodeHandler,0,11667,0x10155fea0,1388,Add.Wide -code-creation,BytecodeHandler,0,11667,0x101560420,1356,Sub.Wide -code-creation,BytecodeHandler,0,11709,0x101560980,1460,Mul.Wide -code-creation,BytecodeHandler,0,11709,0x101560f40,1548,Div.Wide -code-creation,BytecodeHandler,0,11709,0x101561560,1476,Mod.Wide -code-creation,BytecodeHandler,0,11709,0x101561b40,884,Exp.Wide -code-creation,BytecodeHandler,0,11709,0x101561ec0,1664,BitwiseOr.Wide -code-creation,BytecodeHandler,0,11709,0x101562560,1664,BitwiseXor.Wide -code-creation,BytecodeHandler,0,11709,0x101562c00,1664,BitwiseAnd.Wide -code-creation,BytecodeHandler,0,11709,0x1015632a0,1124,ShiftLeft.Wide -code-creation,BytecodeHandler,0,11709,0x101563720,1124,ShiftRight.Wide -code-creation,BytecodeHandler,0,11709,0x101563ba0,1184,ShiftRightLogical.Wide -code-creation,BytecodeHandler,0,11709,0x101564060,1316,AddSmi.Wide -code-creation,BytecodeHandler,0,11709,0x1015645a0,1332,SubSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101564ae0,1432,MulSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101565080,1584,DivSmi.Wide -code-creation,BytecodeHandler,0,11750,0x1015656c0,1408,ModSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101565c60,776,ExpSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101565f80,476,BitwiseOrSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101566160,476,BitwiseXorSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101566340,476,BitwiseAndSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101566520,504,ShiftLeftSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101566720,484,ShiftRightSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101566920,788,ShiftRightLogicalSmi.Wide -code-creation,BytecodeHandler,0,11750,0x101566c40,628,Inc.Wide -code-creation,BytecodeHandler,0,11750,0x101566ec0,628,Dec.Wide -code-creation,BytecodeHandler,0,11792,0x101567140,648,Negate.Wide -code-creation,BytecodeHandler,0,11792,0x1015673e0,484,BitwiseNot.Wide -code-creation,BytecodeHandler,0,11792,0x1015675e0,140,DeletePropertyStrict.Wide -code-creation,BytecodeHandler,0,11792,0x101567680,140,DeletePropertySloppy.Wide -code-creation,BytecodeHandler,0,11792,0x101567720,52,GetSuperConstructor.Wide -code-creation,BytecodeHandler,0,11792,0x101567760,372,FindNonDefaultConstructorOrConstruct.Wide -code-creation,BytecodeHandler,0,11792,0x1015678e0,924,CallAnyReceiver.Wide -code-creation,BytecodeHandler,0,11792,0x101567c80,924,CallProperty.Wide -code-creation,BytecodeHandler,0,11792,0x101568020,936,CallProperty0.Wide -code-creation,BytecodeHandler,0,11792,0x1015683e0,948,CallProperty1.Wide -code-creation,BytecodeHandler,0,11834,0x1015687a0,968,CallProperty2.Wide -code-creation,BytecodeHandler,0,11834,0x101568b80,920,CallUndefinedReceiver.Wide -code-creation,BytecodeHandler,0,11834,0x101568f20,912,CallUndefinedReceiver0.Wide -code-creation,BytecodeHandler,0,11834,0x1015692c0,924,CallUndefinedReceiver1.Wide -code-creation,BytecodeHandler,0,11834,0x101569660,944,CallUndefinedReceiver2.Wide -code-creation,BytecodeHandler,0,11834,0x101569a20,924,CallWithSpread.Wide -code-creation,BytecodeHandler,0,11834,0x101569dc0,148,CallRuntime.Wide -code-creation,BytecodeHandler,0,11834,0x101569e60,196,CallRuntimeForPair.Wide -code-creation,BytecodeHandler,0,11834,0x101569f40,104,CallJSRuntime.Wide -code-creation,BytecodeHandler,0,11834,0x101569fc0,1412,InvokeIntrinsic.Wide -code-creation,BytecodeHandler,0,11834,0x10156a560,888,Construct.Wide -code-creation,BytecodeHandler,0,11875,0x10156a8e0,440,ConstructWithSpread.Wide -code-creation,BytecodeHandler,0,11875,0x10156aaa0,2300,TestEqual.Wide -code-creation,BytecodeHandler,0,11875,0x10156b3a0,1168,TestEqualStrict.Wide -code-creation,BytecodeHandler,0,11875,0x10156b840,1728,TestLessThan.Wide -code-creation,BytecodeHandler,0,11875,0x10156bf20,1728,TestGreaterThan.Wide -code-creation,BytecodeHandler,0,11875,0x10156c600,1728,TestLessThanOrEqual.Wide -code-creation,BytecodeHandler,0,11875,0x10156cce0,1728,TestGreaterThanOrEqual.Wide -code-creation,BytecodeHandler,0,11875,0x10156d3c0,856,TestInstanceOf.Wide -code-creation,BytecodeHandler,0,11875,0x10156d720,180,TestIn.Wide -code-creation,BytecodeHandler,0,11875,0x10156d7e0,136,ToName.Wide -code-creation,BytecodeHandler,0,11875,0x10156d880,240,ToNumber.Wide -code-creation,BytecodeHandler,0,11875,0x10156d980,260,ToNumeric.Wide -code-creation,BytecodeHandler,0,11917,0x10156daa0,136,ToObject.Wide -code-creation,BytecodeHandler,0,11917,0x10156db40,448,CreateRegExpLiteral.Wide -code-creation,BytecodeHandler,0,11917,0x10156dd20,1488,CreateArrayLiteral.Wide -code-creation,BytecodeHandler,0,11917,0x10156e300,776,CreateEmptyArrayLiteral.Wide -code-creation,BytecodeHandler,0,11917,0x10156e620,2252,CreateObjectLiteral.Wide -code-creation,BytecodeHandler,0,11917,0x10156ef00,196,CloneObject.Wide -code-creation,BytecodeHandler,0,11917,0x10156efe0,188,GetTemplateObject.Wide -code-creation,BytecodeHandler,0,11917,0x10156f0a0,376,CreateClosure.Wide -code-creation,BytecodeHandler,0,11917,0x10156f220,144,CreateBlockContext.Wide -code-creation,BytecodeHandler,0,11917,0x10156f2c0,156,CreateCatchContext.Wide -code-creation,BytecodeHandler,0,11917,0x10156f360,344,CreateFunctionContext.Wide -code-creation,BytecodeHandler,0,11959,0x10156f4c0,344,CreateEvalContext.Wide -code-creation,BytecodeHandler,0,11959,0x10156f620,156,CreateWithContext.Wide -code-creation,BytecodeHandler,0,11959,0x10156f6c0,952,JumpLoop.Wide -code-creation,BytecodeHandler,0,11959,0x10156fa80,60,Jump.Wide -code-creation,BytecodeHandler,0,11959,0x10156fac0,80,JumpConstant.Wide -code-creation,BytecodeHandler,0,11959,0x10156fb20,112,JumpIfNullConstant.Wide -code-creation,BytecodeHandler,0,11959,0x10156fba0,112,JumpIfNotNullConstant.Wide -code-creation,BytecodeHandler,0,11959,0x10156fc20,112,JumpIfUndefinedConstant.Wide -code-creation,BytecodeHandler,0,11959,0x10156fca0,112,JumpIfNotUndefinedConstant.Wide -code-creation,BytecodeHandler,0,11959,0x10156fd20,124,JumpIfUndefinedOrNullConstant.Wide -code-creation,BytecodeHandler,0,12000,0x10156fda0,112,JumpIfTrueConstant.Wide -code-creation,BytecodeHandler,0,12000,0x10156fe20,112,JumpIfFalseConstant.Wide -code-creation,BytecodeHandler,0,12000,0x10156fea0,120,JumpIfJSReceiverConstant.Wide -code-creation,BytecodeHandler,0,12000,0x10156ff20,208,JumpIfToBooleanTrueConstant.Wide -code-creation,BytecodeHandler,0,12000,0x101570000,208,JumpIfToBooleanFalseConstant.Wide -code-creation,BytecodeHandler,0,12000,0x1015700e0,188,JumpIfToBooleanTrue.Wide -code-creation,BytecodeHandler,0,12000,0x1015701a0,188,JumpIfToBooleanFalse.Wide -code-creation,BytecodeHandler,0,12000,0x101570260,92,JumpIfTrue.Wide -code-creation,BytecodeHandler,0,12000,0x1015702c0,92,JumpIfFalse.Wide -code-creation,BytecodeHandler,0,12000,0x101570320,92,JumpIfNull.Wide -code-creation,BytecodeHandler,0,12042,0x101570380,92,JumpIfNotNull.Wide -code-creation,BytecodeHandler,0,12042,0x1015703e0,92,JumpIfUndefined.Wide -code-creation,BytecodeHandler,0,12042,0x101570440,92,JumpIfNotUndefined.Wide -code-creation,BytecodeHandler,0,12042,0x1015704a0,104,JumpIfUndefinedOrNull.Wide -code-creation,BytecodeHandler,0,12042,0x101570520,100,JumpIfJSReceiver.Wide -code-creation,BytecodeHandler,0,12042,0x1015705a0,140,SwitchOnSmiNoFeedback.Wide -code-creation,BytecodeHandler,0,12042,0x101570640,540,ForInEnumerate.Wide -code-creation,BytecodeHandler,0,12042,0x101570860,268,ForInPrepare.Wide -code-creation,BytecodeHandler,0,12042,0x101570980,76,ForInContinue.Wide -code-creation,BytecodeHandler,0,12042,0x1015709e0,308,ForInNext.Wide -code-creation,BytecodeHandler,0,12042,0x101570b20,48,ForInStep.Wide -code-creation,BytecodeHandler,0,12084,0x101570b60,192,ThrowReferenceErrorIfHole.Wide -code-creation,BytecodeHandler,0,12084,0x101570c40,180,ThrowIfNotSuperConstructor.Wide -code-creation,BytecodeHandler,0,12084,0x101570d00,148,SwitchOnGeneratorState.Wide -code-creation,BytecodeHandler,0,12084,0x101570da0,520,SuspendGenerator.Wide -code-creation,BytecodeHandler,0,12084,0x101570fc0,176,ResumeGenerator.Wide -code-creation,BytecodeHandler,0,12084,0x101571080,184,GetIterator.Wide -code-creation,BytecodeHandler,0,12084,0x101571140,140,IncBlockCounter.Wide -code-creation,BytecodeHandler,0,12084,0x1015711e0,80,Abort.Wide -code-creation,BytecodeHandler,0,12084,0x101571240,128,DebugBreak1.ExtraWide -code-creation,BytecodeHandler,0,12084,0x1015712e0,128,DebugBreak2.ExtraWide -code-creation,BytecodeHandler,0,12084,0x101571380,128,DebugBreak3.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571420,128,DebugBreak4.ExtraWide -code-creation,BytecodeHandler,0,12125,0x1015714c0,128,DebugBreak5.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571560,128,DebugBreak6.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571600,44,Ldar.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571640,40,LdaSmi.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571680,48,LdaConstant.ExtraWide -code-creation,BytecodeHandler,0,12125,0x1015716c0,136,LdaContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571760,136,LdaImmutableContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571800,68,LdaCurrentContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12125,0x101571860,68,LdaImmutableCurrentContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12125,0x1015718c0,44,Star.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101571900,60,Mov.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101571940,52,PushContext.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101571980,48,PopContext.ExtraWide -code-creation,BytecodeHandler,0,12167,0x1015719c0,64,TestReferenceEqual.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101571a20,4796,LdaGlobal.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101572ce0,4708,LdaGlobalInsideTypeof.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101573f60,188,StaGlobal.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101574020,192,StaContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101574100,124,StaCurrentContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12167,0x101574180,156,LdaLookupSlot.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101574220,320,LdaLookupContextSlot.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101574380,4996,LdaLookupGlobalSlot.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101575720,156,LdaLookupSlotInsideTypeof.ExtraWide -code-creation,BytecodeHandler,0,12209,0x1015757c0,320,LdaLookupContextSlotInsideTypeof.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101575920,4912,LdaLookupGlobalSlotInsideTypeof.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101576c60,252,StaLookupSlot.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101576d60,5288,GetNamedProperty.ExtraWide -code-creation,BytecodeHandler,0,12209,0x101578220,212,GetNamedPropertyFromSuper.ExtraWide -code-creation,BytecodeHandler,0,12250,0x101578300,180,GetKeyedProperty.ExtraWide -code-creation,BytecodeHandler,0,12250,0x1015783c0,228,LdaModuleVariable.ExtraWide -code-creation,BytecodeHandler,0,12250,0x1015784c0,352,StaModuleVariable.ExtraWide -code-creation,BytecodeHandler,0,12250,0x101578640,204,SetNamedProperty.ExtraWide -code-creation,BytecodeHandler,0,12250,0x101578720,204,DefineNamedOwnProperty.ExtraWide -code-creation,BytecodeHandler,0,12250,0x101578800,196,SetKeyedProperty.ExtraWide -code-creation,BytecodeHandler,0,12250,0x1015788e0,216,DefineKeyedOwnProperty.ExtraWide -code-creation,BytecodeHandler,0,12250,0x1015789c0,196,StaInArrayLiteral.ExtraWide -code-creation,BytecodeHandler,0,12250,0x101578aa0,232,DefineKeyedOwnPropertyInLiteral.ExtraWide -code-creation,BytecodeHandler,0,12250,0x101578ba0,1388,Add.ExtraWide -code-creation,BytecodeHandler,0,12292,0x101579120,1356,Sub.ExtraWide -code-creation,BytecodeHandler,0,12292,0x101579680,1460,Mul.ExtraWide -code-creation,BytecodeHandler,0,12292,0x101579c40,1548,Div.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157a260,1476,Mod.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157a840,884,Exp.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157abc0,1664,BitwiseOr.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157b260,1664,BitwiseXor.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157b900,1664,BitwiseAnd.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157bfa0,1124,ShiftLeft.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157c420,1124,ShiftRight.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157c8a0,1184,ShiftRightLogical.ExtraWide -code-creation,BytecodeHandler,0,12292,0x10157cd60,1316,AddSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157d2a0,1332,SubSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157d7e0,1432,MulSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157dd80,1584,DivSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157e3c0,1408,ModSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157e960,776,ExpSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157ec80,472,BitwiseOrSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157ee60,472,BitwiseXorSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157f040,472,BitwiseAndSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157f220,492,ShiftLeftSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157f420,480,ShiftRightSmi.ExtraWide -code-creation,BytecodeHandler,0,12334,0x10157f620,780,ShiftRightLogicalSmi.ExtraWide -code-creation,BytecodeHandler,0,12375,0x10157f940,628,Inc.ExtraWide -code-creation,BytecodeHandler,0,12375,0x10157fbc0,628,Dec.ExtraWide -code-creation,BytecodeHandler,0,12375,0x10157fe40,648,Negate.ExtraWide -code-creation,BytecodeHandler,0,12375,0x1015800e0,484,BitwiseNot.ExtraWide -code-creation,BytecodeHandler,0,12375,0x1015802e0,140,DeletePropertyStrict.ExtraWide -code-creation,BytecodeHandler,0,12375,0x101580380,140,DeletePropertySloppy.ExtraWide -code-creation,BytecodeHandler,0,12375,0x101580420,52,GetSuperConstructor.ExtraWide -code-creation,BytecodeHandler,0,12375,0x101580460,372,FindNonDefaultConstructorOrConstruct.ExtraWide -code-creation,BytecodeHandler,0,12375,0x1015805e0,924,CallAnyReceiver.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101580980,924,CallProperty.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101580d20,936,CallProperty0.ExtraWide -code-creation,BytecodeHandler,0,12417,0x1015810e0,948,CallProperty1.ExtraWide -code-creation,BytecodeHandler,0,12417,0x1015814a0,968,CallProperty2.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101581880,920,CallUndefinedReceiver.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101581c20,912,CallUndefinedReceiver0.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101581fc0,924,CallUndefinedReceiver1.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101582360,944,CallUndefinedReceiver2.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101582720,924,CallWithSpread.ExtraWide -code-creation,BytecodeHandler,0,12417,0x101582ac0,148,CallRuntime.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101582b60,196,CallRuntimeForPair.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101582c40,104,CallJSRuntime.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101582cc0,1412,InvokeIntrinsic.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101583260,888,Construct.ExtraWide -code-creation,BytecodeHandler,0,12459,0x1015835e0,440,ConstructWithSpread.ExtraWide -code-creation,BytecodeHandler,0,12459,0x1015837a0,2300,TestEqual.ExtraWide -code-creation,BytecodeHandler,0,12459,0x1015840a0,1168,TestEqualStrict.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101584540,1728,TestLessThan.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101584c20,1728,TestGreaterThan.ExtraWide -code-creation,BytecodeHandler,0,12459,0x101585300,1728,TestLessThanOrEqual.ExtraWide -code-creation,BytecodeHandler,0,12500,0x1015859e0,1728,TestGreaterThanOrEqual.ExtraWide -code-creation,BytecodeHandler,0,12500,0x1015860c0,856,TestInstanceOf.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101586420,180,TestIn.ExtraWide -code-creation,BytecodeHandler,0,12500,0x1015864e0,136,ToName.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101586580,240,ToNumber.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101586680,260,ToNumeric.ExtraWide -code-creation,BytecodeHandler,0,12500,0x1015867a0,136,ToObject.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101586840,448,CreateRegExpLiteral.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101586a20,1488,CreateArrayLiteral.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101587000,776,CreateEmptyArrayLiteral.ExtraWide -code-creation,BytecodeHandler,0,12500,0x101587320,2252,CreateObjectLiteral.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101587c00,196,CloneObject.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101587ce0,188,GetTemplateObject.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101587da0,376,CreateClosure.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101587f20,144,CreateBlockContext.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101587fc0,156,CreateCatchContext.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101588060,344,CreateFunctionContext.ExtraWide -code-creation,BytecodeHandler,0,12542,0x1015881c0,344,CreateEvalContext.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101588320,156,CreateWithContext.ExtraWide -code-creation,BytecodeHandler,0,12542,0x1015883c0,952,JumpLoop.ExtraWide -code-creation,BytecodeHandler,0,12542,0x101588780,60,Jump.ExtraWide -code-creation,BytecodeHandler,0,12584,0x1015887c0,80,JumpConstant.ExtraWide -code-creation,BytecodeHandler,0,12584,0x101588820,112,JumpIfNullConstant.ExtraWide -code-creation,BytecodeHandler,0,12584,0x1015888a0,112,JumpIfNotNullConstant.ExtraWide -code-creation,BytecodeHandler,0,12584,0x101588920,112,JumpIfUndefinedConstant.ExtraWide -code-creation,BytecodeHandler,0,12584,0x1015889a0,112,JumpIfNotUndefinedConstant.ExtraWide -code-creation,BytecodeHandler,0,12584,0x101588a20,124,JumpIfUndefinedOrNullConstant.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588aa0,112,JumpIfTrueConstant.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588b20,112,JumpIfFalseConstant.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588ba0,120,JumpIfJSReceiverConstant.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588c20,208,JumpIfToBooleanTrueConstant.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588d00,208,JumpIfToBooleanFalseConstant.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588de0,188,JumpIfToBooleanTrue.ExtraWide -code-creation,BytecodeHandler,0,12625,0x101588ea0,188,JumpIfToBooleanFalse.ExtraWide -code-creation,BytecodeHandler,0,12667,0x101588f60,92,JumpIfTrue.ExtraWide -code-creation,BytecodeHandler,0,12667,0x101588fc0,92,JumpIfFalse.ExtraWide -code-creation,BytecodeHandler,0,12667,0x101589020,92,JumpIfNull.ExtraWide -code-creation,BytecodeHandler,0,12667,0x101589080,92,JumpIfNotNull.ExtraWide -code-creation,BytecodeHandler,0,12667,0x1015890e0,92,JumpIfUndefined.ExtraWide -code-creation,BytecodeHandler,0,12667,0x101589140,92,JumpIfNotUndefined.ExtraWide -code-creation,BytecodeHandler,0,12667,0x1015891a0,104,JumpIfUndefinedOrNull.ExtraWide -code-creation,BytecodeHandler,0,12667,0x101589220,100,JumpIfJSReceiver.ExtraWide -code-creation,BytecodeHandler,0,12667,0x1015892a0,140,SwitchOnSmiNoFeedback.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589340,540,ForInEnumerate.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589560,268,ForInPrepare.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589680,76,ForInContinue.ExtraWide -code-creation,BytecodeHandler,0,12709,0x1015896e0,308,ForInNext.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589820,48,ForInStep.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589860,192,ThrowReferenceErrorIfHole.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589940,180,ThrowIfNotSuperConstructor.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589a00,148,SwitchOnGeneratorState.ExtraWide -code-creation,BytecodeHandler,0,12709,0x101589aa0,520,SuspendGenerator.ExtraWide -code-creation,BytecodeHandler,0,12750,0x101589cc0,176,ResumeGenerator.ExtraWide -code-creation,BytecodeHandler,0,12750,0x101589d80,184,GetIterator.ExtraWide -code-creation,BytecodeHandler,0,12750,0x101589e40,140,IncBlockCounter.ExtraWide -code-creation,BytecodeHandler,0,12750,0x101589ee0,80,Abort.ExtraWide -tick,0x1957a20c4,12750,0,0x0,6 -new,MemoryChunk,0xaebae480000,262144 -new,MemoryChunk,0x2b73e4fc0000,262144 -new,MemoryChunk,0x347720640000,262144 -tick,0x10116a284,13917,0,0x0,5 -new,MemoryChunk,0x220150100000,262144 -new,MemoryChunk,0x1fdc87040000,262144 -tick,0x101000ad4,15167,0,0x0,5 -code-creation,Eval,10,15375,0x1fdc8707956e,5, node:internal/main/run_main_module:1:1,0x1fdc87079428,~ -code-source-info,0x1fdc8707956e,80,0,1182,C0O0C4O1182,, -code-creation,JS,10,15459,0x1fdc8707965e,120, node:internal/main/run_main_module:1:1,0x1fdc870794e8,~ -code-source-info,0x1fdc8707965e,80,0,1182,C0O23C5O128C8O128C13O71C18O101C23O198C26O198C31O179C36O246C38O246C43O281C46O367C55O367C60O398C63O402C70O448C75O466C78O466C83O502C88O503C95O1114C98O1114C103O1152C108O1159C113O1160C119O1181,, -code-creation,JS,10,15709,0x1fdc87079cbe,45,prepareMainThreadExecution node:internal/process/pre_execution:54:36,0x3f9e7a278bc0,~ -code-source-info,0x1fdc87079cbe,67,1126,1275,C20O1178C30O1208C36O1225C40O1185C44O1273,, -tick,0x19571ca30,16584,0,0x0,3,0x0,0x1fdc87079684 -code-creation,JS,10,16584,0x1fdc8707b8c6,309,prepareExecution node:internal/process/pre_execution:70:26,0x3f9e7a2790f8,~ -code-source-info,0x1fdc8707b8c6,67,1503,3672,C0O1525C5O1538C10O1557C15O1586C18O1586C21O1613C26O1613C29O1730C32O1730C37O1765C40O1765C43O1794C46O1794C49O1819C52O1819C55O1844C58O1844C61O1861C64O1861C67O1881C70O1881C73O1903C76O1903C79O1926C82O1926C85O2014C88O2014C91O2069C94O2069C97O2096C100O2096C103O2130C106O2130C109O2159C115O2159C120O2188C125O2189C129O2209C132O2209C135O2242C139O2266C150O2273C155O2298C160O2266C164O2401C167O2401C171O2427C173O2447C179O2447C184O2490C189O2504C194O2524C199O2491C205O2623C208O2623C211O2661C214O2661C217O2721C220O2721C223O3055C226O3055C229O3270C232O3270C235O3361C241O3361C246O3400C251O3401C257O3443C268O3451C273O3476C279O3443C283O3562C290O3570C292O3562C296O3597C300O3626C303O3626C306O3653C308O3670,, -code-creation,JS,10,16625,0x1fdc8707bbb6,10,refreshRuntimeOptions node:internal/process/pre_execution:177:31,0x3f9e7a2791e8,~ -code-source-info,0x1fdc8707bbb6,67,4871,4897,C0O4878C5O4878C9O4896,, -code-creation,JS,10,16667,0x1fdc8707bc9e,22,refreshOptions node:internal/options:39:24,0x3f9e7a244918,~ -code-source-info,0x1fdc8707bc9e,17,902,960,C0O909C4O920C10O935C14O946C21O959,, -code-creation,JS,10,16792,0x1fdc8707c006,19,reconnectZeroFillToggle node:internal/buffer:1074:33,0x3f9e7a255520,~ -code-source-info,0x1fdc8707c006,25,30714,30754,C0O30721C5O30732C11O30730C18O30753,, -tick,0x19579ebd4,17875,0,0x0,3,0x0,0x1fdc8707b8e0,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,17917,0x1fdc8707e8fe,462,patchProcessObject node:internal/process/pre_execution:188:28,0x3f9e7a279238,~ -code-source-info,0x1fdc8707e8fe,67,5351,7754,C0O5385C6O5385C11O5431C19O5431C24O5463C30O5463C35O5501C40O5502C44O5628C55O5649C62O5783C65O5783C75O5824C81O5828C88O5628C93O5842C97O5859C101O5874C105O5891C109O5902C112O5910C122O5928C126O5918C130O5969C132O6124C139O6151C146O6155C153O6169C159O6203C166O6207C173O6169C180O6285C186O6285C194O6335C202O6351C209O6355C213O6335C219O6367C222O6375C232O6383C242O6608C248O6608C253O6682C259O6682C264O6654C269O6725C273O6908C282O6908C287O6954C296O6954C301O7007C310O7007C315O7067C324O7067C329O7125C338O7125C343O7185C352O7185C357O7249C366O7249C371O7314C380O7314C385O7385C394O7385C399O7455C408O7455C413O7515C422O7515C427O7585C438O7585C443O7655C454O7655C459O7735C461O7752,, -code-creation,JS,10,18084,0x1fdc8707ee86,134,set node:internal/bootstrap/node:116:8,0x1746951fbd38,~ -code-source-info,0x1fdc8707ee86,12,4131,4547,C0O4146C8O4209C11O4223C19O4260C28O4280C35O4301C38O4301C43O4280C49O4329C54O4361C64O4361C69O4401C78O4408C83O4419C87O4436C96O4443C101O4457C107O4485C116O4492C120O4506C124O4525C126O4534C133O4546,, -new,MemoryChunk,0x9d6055c0000,262144 -code-creation,JS,10,18709,0x1fdc8707fdde,189,resolve node:path:1095:10,0x3f9e7a25b0a0,~ -code-source-info,0x1fdc8707fdde,34,33911,34827,C0O33911C3O33946C6O33977C8O34007C12O34014C16O34027C18O34021C25O34031C27O34075C28O34077C35O34088C42O34094C45O34094C49O34112C59O34142C70O34112C75O34193C81O34200C86O34217C88O34242C100O34268C105O34290C112O34317C120O34356C122O34352C126O34050C131O33989C135O34572C140O34618C151O34587C157O34704C161O34734C166O34745C170O34760C171O34791C177O34798C188O34823,, -tick,0x10099996c,20375,0,0x0,3,0x0,0x1fdc8707e9d3,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 -tick,0x195679db0,20375,0,0x0,3,0x0,0x1fdc8707e9d3,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,20375,0x9d6055c424e,13, node:path:1086:10,0x3f9e7a25b050,~ -code-source-info,0x9d6055c424e,34,33760,33779,C0O33774C3O33774C8O33774C12O33779,, -code-creation,JS,10,20417,0x9d6055c434e,40,wrappedCwd node:internal/bootstrap/switches/does_own_process_state:136:20,0x3f9e7a27c8f0,~ -code-source-info,0x9d6055c434e,73,3560,3644,C0O3567C7O3581C12O3593C17O3616C22O3616C29O3603C35O3625C39O3642,, -code-creation,JS,10,20709,0x9d6055c4a16,444,normalizeString node:path:66:25,0x3f9e7a25ac40,~ -code-source-info,0x9d6055c4a16,34,2161,4085,C0O2226C3O2256C5O2277C8O2294C10O2310C12O2328C14O2341C18O2333C23O2373C27O2366C32O2387C37O2394C45O2443C51O2472C53O2494C58O2530C64O2561C66O2581C69O2575C76O2593C83O2631C85O2640C90O2665C97O2672C104O2697C111O2718C114O2753C118O2760C122O2718C130O2769C132O2765C139O2793C142O2828C146O2835C150O2793C158O2844C160O2840C165O2874C172O2881C177O2923C182O2923C188O2979C190O2998C195O3022C198O3046C202O3104C215O3110C221O3210C225O3217C231O3223C234O3223C239O3221C243O3293C246O3320C248O3342C250O3377C256O3384C261O3405C264O3427C266O3462C269O3489C271O3511C273O3551C277O3594C283O3601C293O3610C308O3642C313O3706C319O3713C324O3728C326O3738C330O3750C335O3787C345O3750C363O3821C370O3864C380O3827C386O3881C388O3903C391O3915C395O3934C398O3955C402O3976C404O3989C406O3985C413O4006C418O4022C425O4049C428O2351C433O2315C441O4072C443O4083,, -code-creation,JS,10,20750,0x9d6055c4d9e,8,isPosixPathSeparator node:path:56:30,0x3f9e7a25aba0,~ -code-source-info,0x9d6055c4d9e,34,1854,1902,C0O1865C2O1881C4O1877C7O1900,, -new,MemoryChunk,0x116d9d700000,262144 -new,MemoryChunk,0x106780000,262144 -code-creation,JS,11,20959,0x106788020,3640,normalizeString node:path:66:25,0x3f9e7a25ac40,^ -code-source-info,0x106788020,34,2161,4085,,, -code-creation,JS,11,21000,0x106788e80,768,requireBuiltin node:internal/bootstrap/realm:414:24,0x1746951f6ed0,^ -code-source-info,0x106788e80,9,13268,13610,,, -code-creation,JS,11,21542,0x1067891a0,1448,compileForInternalLoader node:internal/bootstrap/realm:377:27,0x1746951f6c60,^ -code-source-info,0x1067891a0,9,12252,13050,,, -code-creation,JS,11,21584,0x106789760,648,internalBinding node:internal/bootstrap/realm:185:45,0x1746951f6488,^ -code-source-info,0x106789760,9,5979,6217,,, -code-creation,JS,11,21584,0x106789a00,144,isPosixPathSeparator node:path:56:30,0x3f9e7a25aba0,^ -code-source-info,0x106789a00,34,1854,1902,,, -tick,0x101f1e490,21584,0,0x0,0,0x0,0x9d6055c4bc7,0x1fdc8707fe75,0x1fdc8707e9d3,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,21667,0x9d6055c63d6,376,initializeGlobalConsole node:internal/console/constructor:690:33,0x3f9e7a263348,~ -code-source-info,0x9d6055c63d6,44,20457,21464,C0O20457C12O20477C19O20491C21O20490C30O20508C35O20521C42O20535C44O20534C53O20551C59O20662C67O20662C72O20593C77O20601C82O20629C87O20706C95O20711C100O20736C106O20754C111O20782C112O20789C113O20831C121O20831C126O20813C131O20887C143O20906C148O20887C153O20942C160O20942C165O20992C172O21018C177O21018C185O20992C191O21075C198O21075C203O21075C205O21110C215O21110C237O21103C267O21103C270O21161C276O21161C283O21179C287O21200C293O21200C298O21092C365O21338C370O21338C375O21463,, -code-creation,JS,10,22500,0x9d6055c80ae,94,value node:internal/console/constructor:205:20,0x3f9e7a2629a0,~ -code-source-info,0x9d6055c80ae,44,5840,6477,C0O5840C15O5861C16O5861C18O5879C19O5879C21O5893C33O5943C38O6041C46O6148C60O6210C65O6308C73O6419C87O5893C93O6476,, -code-creation,JS,10,22584,0x9d6055c8736,414,value node:internal/console/constructor:235:20,0x3f9e7a262a60,~ -code-source-info,0x9d6055c8736,44,6577,7977,C17O6633C27O6695C34O6737C52O6807C55O6777C73O6877C86O6974C89O6944C104O7023C111O7065C126O7105C129O7105C144O7157C151O7179C166O7213C169O7209C187O7304C191O7314C198O7336C213O7370C216O7366C235O7392C239O7405C246O7427C261O7457C275O7479C279O7492C286O7514C300O7544C314O7561C318O7576C325O7598C340O7628C354O7643C358O7668C365O7710C380O7750C394O7788C398O7808C407O6633C413O7976,, -code-creation,JS,10,22625,0x9d6055c8cb6,18,createWriteErrorHandler node:internal/console/constructor:357:33,0x3f9e7a262d08,~ -code-source-info,0x9d6055c8cb6,44,10694,11551,C0O10694C13O10723C17O11549,, -code-creation,JS,10,22667,0x9d6055c924e,63,addReadOnlyProcessAlias node:internal/process/pre_execution:248:33,0x3f9e7a279288,~ -code-source-info,0x9d6055c924e,67,7788,8037,C16O7840C21O7840C26O7866C28O7883C36O7913C43O7999C49O8017C56O7883C62O8036,, -code-creation,JS,10,22667,0x9d6055c93ee,82,getOptionValue node:internal/options:44:24,0x3f9e7a244968,~ -code-source-info,0x9d6055c93ee,17,985,1228,C0O1018C3O1018C7O1063C15O1063C22O1113C30O1135C38O1135C43O1122C47O1113C53O1150C55O1175C60O1181C61O1203C66O1203C74O1218C81O1226,, -tick,0x1957a20c4,22709,0,0x0,3,0x0,0x9d6055c9263,0x1fdc8707ea18,0x1fdc8707b8e6,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,22750,0x9d6055c9546,33,getCLIOptionsFromBinding node:internal/options:18:34,0x3f9e7a244750,~ -code-source-info,0x9d6055c9546,17,497,598,C0O504C6O527C11O554C15O539C28O578C32O596,, -code-creation,JS,10,22917,0x9d6055c9bb6,46,setupTraceCategoryState node:internal/process/pre_execution:460:33,0x3f9e7a2796d0,~ -code-source-info,0x9d6055c9bb6,67,13707,13934,C0O13749C6O13749C11O13722C16O13821C22O13821C27O13792C32O13863C35O13888C40O13863C45O13933,, -code-creation,JS,10,22959,0x9d6055c9d4e,77,toggleTraceCategoryState node:internal/process/per_thread:410:34,0x3f9e7a256998,~ -code-source-info,0x9d6055c9d4e,27,12013,12310,C0O12037C4O12066C10O12101C16O12132C21O12176C26O12177C33O12122C39O12201C44O12222C49O12222C55O12241C61O12273C66O12294C71O12294C76O12309,, -code-creation,JS,10,23417,0x9d6055cac7e,62,setupInspectorHooks node:internal/process/pre_execution:466:29,0x3f9e7a279720,~ -code-source-info,0x9d6055cac7e,67,13964,14518,C0O14307C6O14311C11O14336C17O14402C23O14402C28O14371C33O14385C38O14448C44O14448C49O14476C54O14477C61O14517,, -code-creation,JS,10,23459,0x9d6055caf06,126,setupWarningHandler node:internal/process/pre_execution:261:29,0x3f9e7a2792d8,~ -code-source-info,0x9d6055caf06,67,8067,8559,C0O8067C11O8130C19O8130C24O8086C30O8101C36O8169C46O8173C57O8217C62O8221C69O8238C74O8253C79O8261C90O8261C96O8388C103O8392C108O8422C120O8422C125O8558,, -code-creation,JS,10,23500,0x9d6055cb566,236,setupUndici node:internal/process/pre_execution:283:21,0x3f9e7a279328,~ -code-source-info,0x9d6055cb566,67,8654,10014,C0O8654C19O8661C26O8665C30O8685C36O8710C37O8717C38O8729C39O8729C41O9133C51O9138C62O9347C73O9363C82O9347C87O9397C98O9420C109O9450C120O9492C131O9533C142O9575C150O9397C155O9690C163O9690C168O9721C178O9722C183O9865C193O9869C199O9919C210O9942C221O9973C229O9919C235O10013,, -code-creation,JS,10,23542,0x9d6055cb81e,28,getEmbedderOptions node:internal/options:32:28,0x3f9e7a2448c8,~ -code-source-info,0x9d6055cb81e,17,760,877,C0O767C6O795C11O813C17O811C23O852C27O875,, -code-creation,JS,10,23542,0x9d6055cbd9e,33,lazyInterface node:internal/process/pre_execution:298:25,0x9d6055cb2f0,~ -code-source-info,0x9d6055cbd9e,67,8910,9129,C0O8910C9O8923C14O8989C22O9047C32O9125,, -code-creation,JS,10,23625,0x9d6055cc42e,174,setupWebCrypto node:internal/process/pre_execution:341:24,0x3f9e7a2793d8,~ -code-source-info,0x9d6055cc42e,67,10141,11070,C0O10148C5O10152C9O10172C17O10199C23O10199C29O10259C30O10266C31O10274C37O10278C42O10303C48O10322C55O10360C73O10322C78O10633C85O10661C96O10633C103O10771C110O10792C123O10861C154O10861C167O10771C173O11069,, -code-creation,JS,10,23667,0x9d6055ccb7e,70,setupCustomEvent node:internal/process/pre_execution:389:26,0x3f9e7a2794a0,~ -code-source-info,0x9d6055ccb7e,67,11724,11976,C0O11731C5O11735C9O11755C17O11782C23O11782C29O11844C30O11851C31O11882C37O11882C42O11866C47O11918C54O11934C63O11918C69O11975,, -code-creation,JS,10,23709,0x9d6055ccd4e,64,setupCodeCoverage node:internal/process/pre_execution:374:27,0x3f9e7a279450,~ -code-source-info,0x9d6055ccd4e,67,11098,11593,C0O11404C3O11416C8O11420C16O11447C22O11447C28O11501C31O11509C38O11538C44O11565C49O11569C54O11538C58O11530C63O11592,, -code-creation,JS,10,23750,0x9d6055ccf2e,75,setupDebugEnv node:internal/process/pre_execution:420:23,0x3f9e7a2795b8,~ -code-source-info,0x9d6055ccf2e,67,12478,12687,C0O12485C6O12485C11O12518C19O12546C24O12550C29O12519C34O12565C42O12569C48O12613C54O12613C59O12648C64O12662C69O12663C74O12686,, -code-creation,JS,10,23792,0x9d6055cd296,153,initializeDebugEnv node:internal/util/debuglog:21:28,0x3f9e7a24a410,~ -code-source-info,0x9d6055cd296,22,530,976,C0O545C7O556C13O581C24O694C38O694C45O738C56O739C63O767C74O768C82O818C94O833C110O818C115O818C117O856C126O868C138O944C145O956C152O975,, -code-creation,JS,10,23917,0x9d6055cd92e,31,initializeReport node:internal/process/pre_execution:408:26,0x3f9e7a279540,~ -code-source-info,0x9d6055cd92e,67,12230,12454,C0O12237C11O12258C16O12350C24O12237C30O12453,, -tick,0x1955f1474,23959,0,0x0,2,0x0,0x1fdc8707b924,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,24000,0x9d6055ce17e,557,initializePermission node:internal/process/pre_execution:573:30,0x3f9e7a279860,~ -code-source-info,0x9d6055ce17e,67,17535,19389,C0O17573C8O17573C13O17620C15O17654C22O17670C26O17765C29O17773C41O17773C47O17900C53O17900C58O17886C63O17891C68O17962C73O18049C90O18041C120O18041C123O18068C129O18072C135O18104C139O18112C151O18147C166O18190C175O18112C181O18030C253O18306C258O18389C275O18381C305O18381C308O18427C314O18427C319O18465C327O18472C333O18486C338O18490C348O18490C355O18515C359O18523C371O18553C386O18583C393O18656C400O18699C409O18523C415O18370C487O18827C498O18848C504O18960C512O18970C518O18983C528O18827C535O19054C540O19173C545O19195C550O19173C556O19388,, -code-creation,JS,10,24042,0x9d6055ce5a6,34, node:internal/process/pre_execution:626:53,0x9d6055cde38,~ -code-source-info,0x9d6055ce5a6,67,19221,19381,C0O19253C5O19253C10O19291C16O19309C26O19315C31O19309C33O19380,, -code-creation,JS,10,24042,0x9d6055ce776,35,initializeSourceMapsHandlers node:internal/process/pre_execution:707:38,0x3f9e7a2799d8,~ -code-source-info,0x9d6055ce776,67,21949,22110,C0O21996C6O21996C11O21968C16O22047C18O22068C24O22068C29O22047C34O22109,, -code-creation,JS,10,24084,0x9d6055ce926,94,setSourceMapsEnabled node:internal/source_map/source_map_cache:52:30,0x3f9e7a25c5d0,~ -code-source-info,0x9d6055ce926,38,1690,2203,C0O1700C8O1700C13O1732C18O1732C22O1760C26O1816C32O1816C37O1789C42O1872C47O1872C53O1930C59O2089C65O2089C70O2062C75O2121C80O2121C84O2177C86O2195C93O2202,, -code-creation,JS,10,24500,0x9d6055cf50e,30,validateBoolean node:internal/validators:216:25,0x1746951ff250,~ -code-source-info,0x9d6055cf50e,15,5595,5706,C0O5613C6O5649C22O5655C27O5649C29O5705,, -code-creation,JS,10,25084,0x9d6055d0d8e,348,initializeDeprecations node:internal/process/pre_execution:484:32,0x3f9e7a279770,~ -code-source-info,0x9d6055d0d8e,67,14744,16665,C0O14773C6O14773C11O14759C16O14828C24O14828C29O15019C35O15019C40O15060C46O15060C51O15113C73O15105C101O15105C104O15431C112O15451C116O15493C127O15567C138O15657C149O15612C158O15478C167O15716C170O15449C174O15094C239O15993C245O15993C250O15972C255O16022C257O16050C268O16071C275O16212C279O16050C284O16245C288O16275C294O16311C304O16388C311O16293C316O16291C320O16474C326O16516C337O16498C342O16496C347O16664,, -code-creation,JS,10,25167,0x9d6055d112e,72,initializeDns node:internal/dns/utils:202:23,0x3f9e7a27bb90,~ -code-source-info,0x9d6055d112e,71,5449,5813,C0O5477C8O5477C13O5517C15O5542C28O5551C36O5652C38O5661C44O5684C49O5689C54O5717C55O5724C56O5732C66O5732C71O5812,, -code-creation,JS,10,25542,0x9d6055d1f06,90,setupSymbolDisposePolyfill node:internal/process/pre_execution:138:36,0x3f9e7a279148,~ -code-source-info,0x9d6055d1f06,67,3709,4409,C0O3879C5O3897C13O3925C20O3946C33O4055C39O3925C44O4167C49O4185C57O4218C64O4239C77O4353C83O4218C89O4408,, -code-creation,JS,10,25584,0x9d6055d20ce,21,assert node:internal/assert:11:16,0x1746951fb6e0,~ -script-source,11,node:internal/assert,'use strict';\n\nlet error;\nfunction lazyError() {\n if (!error) {\n error = require('internal/errors').codes.ERR_INTERNAL_ASSERTION;\n }\n return error;\n}\n\nfunction assert(value\x2C message) {\n if (!value) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n }\n}\n\nfunction fail(message) {\n const ERR_INTERNAL_ASSERTION = lazyError();\n throw new ERR_INTERNAL_ASSERTION(message);\n}\n\nassert.fail = fail;\n\nmodule.exports = assert;\n -code-source-info,0x9d6055d20ce,11,172,307,C0O193C4O242C7O242C11O259C13O265C18O259C20O306,, -tick,0x100c25204,25625,0,0x0,3,0x0,0x1fdc8707b943,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,25667,0x9d6055d263e,432,readPolicyFromDisk node:internal/process/pre_execution:635:28,0x3f9e7a2798e8,~ -code-source-info,0x9d6055d263e,67,19418,21210,C0O19452C10O19452C15O19495C17O19525C21O19533C35O19533C41O19658C49O19658C55O19635C60O19650C65O19777C67O19794C75O19798C81O19813C87O19814C94O19868C101O19937C105O19959C111O19959C117O19937C123O19973C134O19989C138O20003C146O20017C152O20075C160O20075C165O20109C175O20109C182O20184C192O20184C197O20226C199O20279C207O20279C212O20357C220O20357C226O20325C231O20337C236O20406C242O20406C248O20456C254O20456C260O20515C262O20541C264O20565C268O20546C273O20656C275O20672C280O20606C285O20634C290O20698C296O20734C302O20734C307O20775C313O20775C319O20804C325O20824C329O20811C334O20844C341O20891C343O20920C345O20961C351O20983C361O20983C368O20961C374O20574C379O20528C383O21018C387O21045C401O21051C406O21045C407O21134C415O21162C419O21192C429O21204C431O21209,, -code-creation,JS,10,25709,0x9d6055d2a4e,49,setupStacktracePrinterOnSigint node:internal/process/pre_execution:398:40,0x3f9e7a2794f0,~ -code-source-info,0x9d6055d2a4e,67,12017,12203,C0O12024C8O12029C14O12069C15O12076C16O12110C22O12110C27O12091C32O12160C38O12193C43O12193C48O12202,, -code-creation,JS,10,25750,0x9d6055d2bee,35,initializeReportSignalHandlers node:internal/process/pre_execution:428:40,0x3f9e7a279608,~ -code-source-info,0x9d6055d2bee,67,12788,12937,C0O12795C8O12799C14O12872C20O12872C25O12851C30O12912C34O12936,, -code-creation,JS,10,25750,0x9d6055d2eee,155,initializeHeapSnapshotSignalHandlers node:internal/process/pre_execution:435:46,0x3f9e7a279658,~ -code-source-info,0x9d6055d2eee,67,12984,13673,C0O12984C20O13006C30O13006C34O13006C36O13071C46O13071C50O13071C52O13110C56O13127C57O13134C58O13138C66O13138C71O13168C79O13169C84O13229C92O13229C97O13207C103O13404C108O13412C119O13412C125O13540C132O13544C137O13572C149O13572C154O13672,, -code-creation,JS,10,25792,0x9d6055d3236,138,setupChildProcessIpcChannel node:internal/process/pre_execution:545:37,0x3f9e7a2797c0,~ -code-source-info,0x9d6055d3236,67,16703,17232,C0O16710C3O16722C8O16726C14O16764C20O16764C25O16808C33O16831C38O16835C46O16808C52O16861C53O16871C57O16861C61O16952C64O16967C73O17025C76O17033C81O17037C90O17084C93O17099C102O17141C108O17141C113O17165C118O17166C124O17205C127O17220C132O17205C137O17231,, -code-creation,JS,10,25834,0x9d6055d3456,63,initializeClusterIPC node:internal/process/pre_execution:564:30,0x3f9e7a279810,~ -code-source-info,0x9d6055d3456,67,17263,17504,C0O17270C3O17282C10O17286C18O17301C23O17305C29O17343C35O17343C40O17375C45O17375C49O17464C52O17479C62O17503,, -code-creation,JS,10,25834,0x9d6055d3596,54,runDeserializeCallbacks node:internal/v8/startup_snapshot:39:33,0x3f9e7a268f38,~ -code-source-info,0x9d6055d3596,53,863,1004,C0O905C5O898C11O905C16O949C21O970C26O970C33O927C40O940C44O983C48O870C53O1003,, -code-creation,JS,10,26000,0x9d6055d3ac6,69,setupUserModules node:internal/process/pre_execution:163:26,0x3f9e7a279198,~ -code-source-info,0x9d6055d3ac6,67,4436,4839,C10O4465C13O4465C16O4490C19O4490C23O4547C29O4547C34O4589C39O4607C45O4589C49O4700C53O4726C54O4733C55O4740C58O4740C61O4808C64O4808C68O4838,, -code-creation,JS,10,26000,0x9d6055d3c16,21,initializeCJSLoader node:internal/process/pre_execution:685:29,0x3f9e7a279938,~ -code-source-info,0x9d6055d3c16,67,21240,21333,C0O21273C6O21273C11O21255C16O21315C20O21332,, -code-creation,JS,10,26084,0x9d6055d3d76,90,initializeCJS node:internal/modules/cjs/loader:383:23,0x3f9e7a2765a0,~ -code-source-info,0x9d6055d3d76,63,10714,11192,C0O10816C5O10830C10O10830C15O10876C20O10900C23O10900C27O10898C31O10933C36O10933C39O10963C44O10968C48O10988C54O11016C57O11023C62O11023C66O11110C75O11131C80O11167C84O11125C89O11191,, -code-creation,JS,10,27917,0x9d6055d713e,19,getCanBeRequiredByUsersWithoutSchemeList node:internal/bootstrap/realm:313:50,0x1746951f6aa8,~ -code-source-info,0x9d6055d713e,9,9879,9948,C0O9888C11O9905C14O9895C18O9944,, -tick,0x1957d9be4,27917,0,0x0,3,0x0,0x9d6055d3c26,0x9d6055d3ad3,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -tick,0x19571ca90,27917,0,0x0,3,0x0,0x9d6055d3c26,0x9d6055d3ad3,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,27959,0x9d6055d722e,13,desc.value node:internal/per_context/primordials:387:32,0x1746951f4778,~ -code-source-info,0x9d6055d722e,6,11247,11306,C0O11264C7O11271C12O11294,, -code-creation,JS,10,28709,0x9d6055d8a66,13,SafeIterator node:internal/per_context/primordials:332:16,0x1746951f3ec8,~ -code-source-info,0x9d6055d8a66,6,9510,9570,C0O9529C3O9546C7O9544C12O9569,, -code-creation,JS,10,28750,0x9d6055d8c6e,13,next node:internal/per_context/primordials:335:9,0x1746951f3f18,~ -code-source-info,0x9d6055d8c6e,6,9579,9624,C0O9590C3O9607C8O9597C12O9618,, -code-creation,JS,10,28792,0x9d6055d8f5e,158,initializeCjsConditions node:internal/modules/helpers:65:33,0x3f9e7a2779c8,~ -code-source-info,0x9d6055d8f5e,64,1806,2166,C0O1836C8O1836C13O1887C21O1887C26O1944C37O2055C50O2119C95O2143C142O2071C150O2069C157O2165,, -tick,0x1956ec2f8,29125,0,0x0,3,0x0,0x9d6055d3d9a,0x9d6055d3c26,0x9d6055d3ad3,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,29167,0x9d6055d9cf6,315,Module._initPaths node:internal/modules/cjs/loader:1530:29,0x3f9e7a277250,~ -code-source-info,0x9d6055d9cf6,63,49693,50650,C0O49716C9O49736C14O49740C22O49754C28O49754C33O49793C42O49813C47O49817C55O49829C61O49829C66O50024C74O50040C77O50045C85O50061C93O50045C103O50083C106O50088C114O50104C125O50088C131O50144C140O50145C143O50150C157O50150C169O50189C173O50208C180O50237C183O50242C191O50242C198O50208C203O50284C210O50313C213O50318C221O50318C228O50284C233O50361C237O50381C244O50415C249O50443C254O50474C257O50479C262O50443C270O50497C273O50415C279O50381C284O50521C286O50533C292O50594C297O50615C302O50635C305O50615C309O50613C314O50649,, -code-creation,JS,11,29250,0x106789aa0,1600,resolve node:path:1095:10,0x3f9e7a25b0a0,^ -code-source-info,0x106789aa0,34,33911,34827,,, -code-creation,JS,11,29250,0x10678a100,392,SafeMap node:internal/per_context/primordials:413:16,0x1746951f4950,^ -code-source-info,0x10678a100,6,11975,11992,,, -code-creation,JS,11,29292,0x10678a2a0,664,getOptionValue node:internal/options:44:24,0x3f9e7a244968,^ -code-source-info,0x10678a2a0,17,985,1228,,, -code-creation,JS,11,29334,0x10678a560,168,exposeLazyInterfaces node:internal/util:683:30,0x3f9e7a243bf0,^ -code-source-info,0x10678a560,16,18482,18553,,, -code-creation,JS,11,30209,0x10678a620,2728,defineLazyProperties node:internal/util:600:30,0x3f9e7a2431f8,^ -code-source-info,0x10678a620,16,16645,17549,,, -code-creation,JS,11,30250,0x10678b0e0,496,getCLIOptionsFromBinding node:internal/options:18:34,0x3f9e7a244750,^ -code-source-info,0x10678b0e0,17,497,598,,, -code-creation,JS,11,30250,0x10678b2e0,136,next node:internal/per_context/primordials:335:9,0x1746951f3f18,^ -code-source-info,0x10678b2e0,6,9579,9624,,, -code-creation,JS,11,30250,0x10678b380,392,SafeSet node:internal/per_context/primordials:426:16,0x1746951f4ba0,^ -code-source-info,0x10678b380,6,12304,12321,,, -code-creation,JS,10,30292,0x9d6055dc2ce,91,initializeESMLoader node:internal/process/pre_execution:690:29,0x3f9e7a279988,~ -code-source-info,0x9d6055dc2ce,67,21363,21910,C0O21410C6O21410C11O21392C16O21451C20O21614C28O21618C34O21734C40O21734C45O21683C50O21691C55O21709C60O21780C66O21780C71O21799C73O21809C77O21823C79O21843C83O21867C85O21886C90O21909,, -tick,0x10105bec8,30334,0,0x0,3,0x0,0x9d6055dc2de,0x9d6055d3ad9,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,30334,0x9d6055dc446,50,initializeESM node:internal/modules/esm/utils:192:23,0x3f9e7a278770,~ -code-source-info,0x9d6055dc446,66,6390,6744,C10O6419C12O6435C18O6455C21O6455C24O6605C32O6605C36O6674C44O6674C49O6743,, -code-creation,JS,10,30667,0x9d6055dce2e,181,initializeDefaultConditions node:internal/modules/esm/utils:60:37,0x3f9e7a2785e0,~ -code-source-info,0x9d6055dce2e,66,1463,1809,C0O1493C8O1493C13O1544C21O1544C26O1601C37O1637C50O1705C95O1729C140O1657C147O1655C153O1753C160O1788C165O1776C173O1774C180O1808,, -code-creation,JS,10,30709,0x9d6055dd026,5,get hasLoadedAnyUserCJSModule node:internal/modules/cjs/loader:72:32,0x3f9e7a2749e0,~ -code-source-info,0x9d6055dd026,63,2217,2257,C0O2222C4O2255,, -code-creation,JS,10,30709,0x9d6055dd12e,53,loadPreloadModules node:internal/process/pre_execution:722:28,0x3f9e7a279a78,~ -code-source-info,0x9d6055dd12e,67,22398,22719,C0O22485C8O22485C13O22516C15O22553C21O22560C26O22637C32O22637C37O22593C42O22603C47O22681C52O22718,, -code-creation,JS,10,30750,0x9d6055dd32e,165,Module._preloadModules node:internal/modules/cjs/loader:1564:34,0x3f9e7a2772e0,~ -code-source-info,0x9d6055dd32e,63,50792,51381,C0O50807C5O50812C11O50838C12O50845C13O50851C17O50864C23O51059C33O51059C42O51109C45O51131C53O51156C58O51156C63O51131C68O51122C85O51184C88O51190C95O51195C100O51217C106O51230C114O51245C116O51245C119O51279C121O51295C125O51284C130O51314C135O51346C139O51314C144O51304C149O51266C153O51358C157O51371C164O51380,, -code-creation,JS,10,30792,0x9d6055dd60e,218,Module node:internal/modules/cjs/loader:252:16,0x3f9e7a2761e0,~ -code-source-info,0x9d6055dd60e,63,7243,7985,C14O7265C16O7273C20O7281C22O7293C25O7298C30O7298C35O7291C39O7313C52O7313C57O7352C62O7370C67O7370C73O7391C84O7391C89O7430C90O7444C94O7454C95O7466C99O7477C101O7491C105O7503C107O7533C112O7533C118O7541C126O7555C128O7593C133O7593C138O7637C143O7637C149O7733C159O7765C162O7765C171O7733C176O7849C181O7869C191O7891C194O7891C200O7849C205O7936C207O7941C212O7965C217O7984,, -code-creation,JS,10,30834,0x9d6055dd9f6,163,dirname node:path:1278:10,0x3f9e7a25b280,~ -code-source-info,0x9d6055dd9f6,34,38877,39546,C0O38890C8O38890C13O38933C19O38940C24O38953C26O38964C27O38985C34O38985C42O39024C44O39020C48O39058C51O39085C53O39113C57O39120C61O39127C63O39127C68O39146C73O39150C81O39189C83O39185C88O39219C92O39250C97O39269C101O39356C103O39135C108O39095C112O39397C114O39405C119O39419C129O39446C130O39451C136O39470C141O39483C143O39495C144O39500C157O39507C162O39542,, -code-creation,JS,10,30875,0x9d6055ddc8e,28,setOwnProperty node:internal/util:723:24,0x3f9e7a243df0,~ -code-source-info,0x9d6055ddc8e,16,19520,19687,C0O19542C5O19575C12O19653C22O19549C27O19685,, -code-creation,JS,10,30917,0x9d6055dde16,45,updateChildren node:internal/modules/cjs/loader:217:24,0x3f9e7a2760f0,~ -code-source-info,0x9d6055dde16,63,6182,6361,C0O6225C7O6231C15O6245C19O6263C23O6271C26O6271C33O6319C38O6319C44O6360,, -code-creation,JS,10,30917,0x9d6055de00e,40, node:internal/util:794:18,0x3f9e7a244148,~ -code-source-info,0x9d6055de00e,16,21797,21917,C0O21806C10O21841C13O21849C19O21847C25O21870C29O21882C35O21900C39O21913,, -code-creation,JS,10,30959,0x9d6055de126,28, node:internal/modules/cjs/loader:117:3,0x3f9e7a275ec0,~ -code-source-info,0x9d6055de126,63,3473,3564,C0O3480C8O3480C20O3522C27O3564,, -code-creation,JS,10,31000,0x9d6055de326,184,Module._nodeModulePaths node:internal/modules/cjs/loader:793:37,0x3f9e7a276950,~ -code-source-info,0x9d6055de326,63,24237,25417,C0O24292C5O24304C10O24304C17O24483C19O24492C24O24509C28O24534C29O24783C32O24809C36O24816C40O24825C42O24840C47O24850C48O24850C53O24882C58O24882C64O24924C66O24937C68O24933C73O24967C75O24977C77O24973C82O24996C89O25047C100O25047C108O25083C112O24996C117O25133C120O25151C124O25171C126O25177C131O25195C138O25206C144O25210C149O25232C156O25264C159O24858C164O24791C168O25351C176O25351C181O25400C183O25413,, -code-creation,JS,10,31042,0x9d6055de716,127,internalRequire node:internal/modules/cjs/loader:167:25,0x3f9e7a275fb0,~ -code-source-info,0x9d6055de716,63,4815,5116,C0O4832C8O4832C13O4860C15O4867C20O4881C36O4887C41O4881C42O4996C51O5008C60O5024C63O5038C76O5038C93O5095C102O5107C126O5115,, -code-creation,JS,10,31125,0x9d6055deafe,679,Module._load node:internal/modules/cjs/loader:950:24,0x3f9e7a276bb0,~ -code-creation,JS,10,31167,0x9d6055defee,89,logger node:internal/util/debuglog:100:18,0x3f9e7a24a9f0,~ -code-source-info,0x9d6055defee,22,2965,3160,C0O2965C3O2997C24O3021C30O3038C34O3028C38O3043C39O3058C45O3075C51O3084C55O3065C60O3089C61O3105C65O3112C72O3125C77O3121C83O3112C88O3150,, -code-creation,JS,10,31209,0x9d6055df246,3, node:internal/per_context/primordials:338:21,0x1746951f3f68,~ -code-source-info,0x9d6055df246,6,9645,9674,C0O9656C2O9668,, -code-creation,JS,10,31209,0x9d6055df31e,140,debug node:internal/util/debuglog:81:15,0x3f9e7a24a950,~ -code-source-info,0x9d6055df31e,22,2453,2847,C0O2453C3O2472C6O2472C9O2580C16O2601C22O2588C30O2586C36O2620C42O2656C47O2659C50O2656C54O2684C75O2708C81O2725C85O2715C89O2730C90O2745C96O2762C102O2771C106O2752C111O2776C112O2792C116O2799C123O2812C128O2808C134O2799C139O2837,, -code-creation,JS,10,31250,0x9d6055df4ce,41,init node:internal/util/debuglog:77:16,0x3f9e7a24a900,~ -code-source-info,0x9d6055df4ce,22,2355,2438,C0O2364C10O2370C14O2368C16O2407C26O2417C33O2415C40O2437,, -code-creation,JS,10,31250,0x9d6055df5be,2,testEnabled node:internal/util/debuglog:31:19,0x9d6055cd170,~ -code-source-info,0x9d6055df5be,22,958,969,C0O964C1O969,, -code-creation,JS,10,31292,0x9d6055df736,116,debuglogImpl node:internal/util/debuglog:54:22,0x3f9e7a24a6b8,~ -code-source-info,0x9d6055df736,22,1554,2091,C0O1554C9O1573C18O1587C23O1614C34O1647C39O1655C43O1647C45O1666C55O1666C59O1698C71O1709C75O1714C83O2030C97O2048C99O2046C103O2066C112O2083C115O2089,, -code-creation,JS,10,31292,0x9d6055df8ee,10, node:internal/modules/cjs/loader:357:66,0x3f9e7a276550,~ -code-source-info,0x9d6055df8ee,63,9947,9972,C0O9959C2O9965C9O9971,, -code-creation,JS,10,31334,0x9d6055df99e,2,noop node:internal/util/debuglog:46:14,0x3f9e7a24a618,~ -code-source-info,0x9d6055df99e,22,1404,1412,C1O1411,, -code-creation,JS,10,31334,0x9d6055dfb5e,58,reportModuleToWatchMode node:internal/modules/cjs/loader:228:33,0x3f9e7a276140,~ -code-source-info,0x9d6055dfb5e,63,6510,6634,C0O6525C5O6529C13O6570C19O6582C22O6590C32O6614C41O6615C51O6590C57O6633,, -code-creation,JS,10,31375,0x9d6055dfcae,13, node:internal/modules/cjs/loader:119:45,0x3f9e7a275f10,~ -code-source-info,0x9d6055dfcae,63,3613,3656,C0O3631C3O3627C8O3631C12O3656,, -code-creation,JS,10,31459,0x9d6055e01ee,881,Module._resolveFilename node:internal/modules/cjs/loader:1058:35,0x3f9e7a276c20,~ -code-creation,JS,10,31500,0x9d6055e083e,77,normalizeRequirableId node:internal/bootstrap/realm:292:31,0x1746951f6a08,~ -code-source-info,0x9d6055e083e,9,9252,9576,C0O9263C10O9267C17O9336C27O9336C33O9371C38O9389C43O9389C50O9435C52O9455C55O9475C60O9493C65O9493C72O9533C74O9543C75O9555C76O9572,, -code-creation,JS,10,31500,0x9d6055e0986,18,canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36,0x1746951f69b8,~ -code-source-info,0x9d6055e0986,9,9152,9220,C0O9163C7O9208C12O9208C17O9216,, -code-creation,JS,10,31542,0x9d6055e0c6e,345,Module._resolveLookupPaths node:internal/modules/cjs/loader:839:38,0x3f9e7a2769e0,~ -code-source-info,0x9d6055e0c6e,63,25560,26839,C0O25582C5O25600C10O25600C17O25638C25O25638C30O25682C31O25694C32O25737C39O25741C47O25775C52O25801C59O25808C66O25821C72O25821C80O25855C87O25872C93O25872C101O25906C108O25925C114O25938C120O25938C128O25972C133O26023C135O26034C142O26044C149O26051C158O26069C165O26097C168O26077C173O26117C178O26158C183O26117C190O26185C195O26217C209O26217C214O26281C220O26288C230O26307C231O26354C235O26377C241O26391C247O26562C252O26574C266O26574C271O26629C273O26646C274O26654C282O26721C290O26654C295O26747C304O26748C307O26753C312O26768C317O26753C329O26782C337O26782C342O26820C344O26837,, -code-creation,JS,10,31584,0x9d6055e0f8e,76,trySelfParentPath node:internal/modules/cjs/loader:520:27,0x3f9e7a2767d0,~ -code-source-info,0x9d6055e0f8e,63,15194,15461,C0O15207C4O15222C5O15235C6O15252C12O15282C16O15291C17O15312C24O15315C29O15338C36O15341C44O15383C47O15398C52O15398C59O15406C62O15411C66O15404C69O15415C72O15436C73O15449C75O15460,, -code-creation,JS,10,31667,0x9d6055e1246,249,trySelf node:internal/modules/cjs/loader:539:17,0x3f9e7a276820,~ -code-source-info,0x9d6055e1246,63,15685,16597,C0O15711C4O15730C5O15743C6O15786C11O15804C16O15804C22O15763C27O15774C32O15836C36O15852C43O15875C49O15901C50O15914C51O15926C53O15959C57O15951C62O15971C67O15997C72O16043C84O16001C91O16059C96O16077C99O16111C104O16116C109O16077C114O16075C120O16140C121O16153C125O16205C131O16205C136O16179C141O16250C146O16308C151O16330C155O16308C162O16372C165O16372C172O16399C175O16399C185O16279C197O16257C202O16441C214O16462C217O16468C224O16473C229O16509C236O16553C240O16515C245O16509C246O16583C248O16583,, -code-creation,JS,10,31709,0x9d6055e161e,184,readPackageScope node:internal/modules/package_json_reader:149:26,0x3f9e7a2780d0,~ -code-source-info,0x9d6055e161e,65,4262,5057,C0O4305C7O4339C10O4305C16O4351C18O4395C23O4406C28O4406C33O4430C40O4485C43O4447C49O4495C62O4507C69O4651C75O4677C78O4688C88O4715C90O4713C94O4688C102O4729C103O4742C104O4753C111O4792C116O4796C120O4757C127O4823C128O4836C129O4861C134O4885C136O4883C140O4861C145O4905C151O4921C158O4944C164O4965C170O4984C171O5017C173O5017C178O4421C182O5042C183O5055,, -tick,0x19571ca18,31917,0,0x0,3,0x0,0x9d6055e045f,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,31917,0x9d6055e1dde,43,isEnabled node:internal/process/permission:16:12,0x3f9e7a263dc8,~ -code-source-info,0x9d6055e1dde,46,324,559,C0O333C6O410C12O410C17O391C22O445C25O470C32O468C38O525C42O555,, -code-creation,JS,10,32000,0x9d6055e2066,22,readPackage node:internal/modules/package_json_reader:140:21,0x3f9e7a278080,~ -code-source-info,0x9d6055e2066,65,3950,4020,C0O3968C5O3980C11O3980C17O3975C21O4018,, -code-creation,JS,10,32042,0x9d6055e24de,573,read node:internal/modules/package_json_reader:48:14,0x3f9e7a277e98,~ -code-source-info,0x9d6055e24de,65,1125,3862,C9O1165C16O1138C21O1144C26O1155C31O1183C36O1193C41O1193C48O1214C53O1227C58O1227C63O1241C64O1299C71O1327C74O1327C79O1299C86O1264C93O1279C97O1377C104O1434C109O1454C114O1475C119O1568C124O1592C131O1916C139O1926C148O1956C150O1974C152O2003C157O2027C162O2036C170O2034C180O2083C184O2104C196O2173C203O2184C222O2211C228O2225C234O2211C238O2209C246O2261C254O2110C259O2104C260O2524C268O2557C274O2568C281O2583C285O2575C288O2538C292O2600C297O2611C301O2631C303O2631C304O2663C305O2677C309O2765C317O2769C324O2832C332O2880C336O2871C340O2897C348O2901C355O2964C363O3012C367O3003C371O3029C379O3033C386O3115C390O3106C394O3135C402O3139C409O3221C413O3212C417O3296C425O3300C432O3357C439O3362C444O3387C451O3392C456O3436C460O3427C464O3453C470O3516C476O3516C481O3497C486O3551C489O3562C501O3612C506O3646C516O3560C522O3682C528O3729C533O3729C538O3760C543O3769C548O3769C554O3815C559O3821C564O3821C570O3846C572O3860,, -code-creation,JS,10,32084,0x9d6055e28fe,3,toNamespacedPath node:path:1269:19,0x3f9e7a25b230,~ -code-source-info,0x9d6055e28fe,34,38744,38804,C0O38788C2O38800,, -code-creation,JS,10,32375,0x9d6055e6da6,889,Module._findPath node:internal/modules/cjs/loader:610:28,0x3f9e7a2768c0,~ -code-creation,JS,10,32459,0x9d6055e73f6,45,isAbsolute node:path:1159:13,0x3f9e7a25b140,~ -code-source-info,0x9d6055e73f6,34,35583,35729,C0O35596C8O35596C13O35642C19O35649C26O35667C31O35667C39O35706C41O35702C44O35725,, -code-creation,JS,10,32500,0x9d6055e7596,85,stat node:internal/modules/cjs/loader:185:14,0x3f9e7a276000,~ -code-source-info,0x9d6055e7596,63,5267,5668,C0O5282C5O5298C10O5298C17O5328C23O5373C28O5383C33O5383C39O5402C41O5430C43O5444C44O5468C49O5468C54O5500C61O5533C66O5613C71O5623C76O5623C82O5652C84O5666,, -code-creation,JS,10,32542,0x9d6055e76ee,45,tryExtensions node:internal/modules/cjs/loader:487:23,0x3f9e7a276730,~ -code-source-info,0x9d6055e76ee,63,14187,14385,C0O14229C2O14241C6O14234C11O14277C16O14300C19O14294C23O14277C29O14319C31O14341C33O14357C34O14250C39O14216C43O14370C44O14383,, -code-creation,JS,10,32542,0x9d6055e7836,62,tryFile node:internal/modules/cjs/loader:472:17,0x3f9e7a2766e0,~ -code-source-info,0x9d6055e7836,63,13680,13900,C0O13717C5O13717C10O13739C11O13746C16O13755C17O13762C18O13767C26O13771C34O13813C36O13827C41O13839C46O13839C51O13860C52O13867C57O13874C61O13898,, -code-creation,JS,10,32584,0x9d6055e798e,42,toRealPath node:internal/modules/helpers:54:20,0x3f9e7a277978,~ -code-source-info,0x9d6055e798e,64,1545,1658,C0O1563C5O1573C10O1586C17O1606C20O1617C28O1636C35O1573C41O1656,, -code-creation,JS,10,32792,0x9d6055e80ae,1026,realpathSync node:fs:2611:22,0x3f9e7a26d4b0,~ -tick,0x1957d960c,35750,0,0x0,3,0x0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -tick,0x100999a3c,35792,0,0x0,3,0x0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -tick,0x19571ca54,35792,0,0x0,3,0x0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,35792,0x9d6055eedee,135,getOptions node:internal/fs/utils:323:20,0x3f9e7a272c50,~ -code-source-info,0x9d6055eedee,60,7457,8064,C9O7484C16O7502C27O7562C29O7584C30O7592C36O7631C41O7675C43O7699C47O7714C54O7749C60O7788C78O7794C83O7788C84O7881C91O7890C96O7908C99O7931C104O7908C108O7957C114O7985C119O8013C127O7985C132O8047C134O8062,, -code-creation,JS,10,36750,0x9d6055f0e7e,48,assertEncoding node:internal/fs/utils:158:24,0x3f9e7a272728,~ -code-source-info,0x9d6055f0e7e,60,3655,3832,C0O3670C6O3687C9O3694C14O3694C21O3737C24O3764C40O3770C45O3764C47O3831,, -tick,0x195695138,36792,0,0x0,3,0x0,0x9d6055e80b4,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,36834,0x9d6055f0f96,20,toPathIfFileURL node:internal/url:1479:25,0x3f9e7a2603b0,~ -code-source-info,0x9d6055f0f96,39,42746,42859,C0O42766C3O42771C9O42797C11O42818C12O42821C15O42828C19O42857,, -code-creation,JS,10,38375,0x9d6055f4046,45,isURL node:internal/url:755:15,0x3f9e7a25ef78,~ -code-source-info,0x9d6055f4046,39,21285,21396,C0O21296C12O21315C21O21330C27O21347C34O21374C40O21303C44O21394,, -code-creation,JS,10,38417,0x9d6055f41ce,81, node:internal/fs/utils:697:38,0x3f9e7a2736f0,~ -code-source-info,0x9d6055f41ce,60,18901,19171,C14O18934C22O18967C25O18967C31O18993C36O19024C49O18999C54O18993C55O19089C68O19089C74O19126C76O19155C78O19155C80O19170,, -tick,0x1957d9c58,38417,0,0x0,3,0x0,0x9d6055e80c0,0x9d6055e79b1,0x9d6055e786f,0x9d6055e7705,0x9d6055e70a2,0x9d6055e04c3,0x9d6055debdc,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,38417,0x9d6055f43de,110, node:internal/fs/utils:366:35,0x3f9e7a272cf0,~ -code-source-info,0x9d6055f43de,60,8792,9388,C16O8856C21O8909C26O8909C31O9003C37O9026C41O9054C45O9071C51O9071C60O9122C64O9143C69O9143C76O9188C77O9195C78O9215C94O9215C100O9336C104O9358C106O9358C107O9375C109O9386,, -code-creation,JS,10,38459,0x9d6055f4556,16,isUint8Array node:internal/util/types:13:22,0x3f9e7a244e20,~ -code-source-info,0x9d6055f4556,18,257,342,C0O269C5O276C12O323C15O340,, -code-creation,JS,10,38584,0x9d6055f49de,62,splitRoot node:fs:2567:33,0x3f9e7a26d3c0,~ -code-source-info,0x9d6055f49de,55,67653,67845,C0O67678C2O67689C6O67683C11O67710C16O67714C24O67752C26O67748C31O67780C44O67787C49O67819C50O67699C55O67665C59O67830C61O67841,, -code-creation,JS,10,38625,0x9d6055f4b16,20,nextPart node:fs:2600:31,0x3f9e7a26d460,~ -code-source-info,0x9d6055f4b16,55,68560,68618,C0O68573C14O68580C19O68614,, -code-creation,JS,10,38667,0x9d6055f4c66,63,handleErrorFromBinding node:internal/fs/utils:349:32,0x3f9e7a272ca0,~ -code-source-info,0x9d6055f4c66,60,8153,8651,C0O8171C6O8234C11O8234C16O8256C24O8256C29O8313C31O8313C32O8338C38O8566C43O8593C51O8566C56O8639C60O8629C62O8650,, -code-creation,JS,10,38667,0x9d6055f4db6,34,isFileType node:fs:206:20,0x3f9e7a26b5b8,~ -code-source-info,0x9d6055f4db6,55,5086,5327,C0O5220C2O5225C6O5232C10O5266C15O5273C20O5289C22O5304C24O5302C30O5312C33O5325,, -code-creation,JS,10,38750,0x9d6055f52d6,72,encodeRealpathResult node:fs:2576:30,0x3f9e7a26d410,~ -code-source-info,0x9d6055f52d6,55,67879,68137,C0O67901C4O67926C10O67946C17O67955C22O67971C24O67985C25O68005C30O68012C35O68012C41O68040C48O68049C53O68069C55O68085C56O68108C61O68125C66O68108C71O68135,, -code-creation,JS,10,38834,0x9d6055f55be,245,Module.load node:internal/modules/cjs/loader:1194:33,0x3f9e7a276d50,~ -code-source-info,0x9d6055f55be,63,38021,38862,C0O38036C8O38082C16O38036C21O38090C26O38103C32O38090C36O38114C38O38128C42O38142C45O38162C52O38179C55O38184C60O38184C66O38162C71O38153C75O38225C78O38225C83O38302C91O38306C101O38359C106O38370C112O38386C124O38392C129O38386C130O38436C133O38443C140O38454C144O38465C150O38485C151O38497C155O38531C160O38531C164O38643C169O38678C174O38689C186O38729C191O38736C196O38736C203O38750C205O38748C210O38787C215O38796C220O38796C227O38828C232O38837C237O38837C244O38861,, -code-creation,JS,10,38875,0x9d6055f597e,99,findLongestRegisteredExtension node:internal/modules/cjs/loader:502:40,0x3f9e7a276780,~ -code-source-info,0x9d6055f597e,63,14608,15045,C0O14636C5O14641C10O14641C16O14667C18O14691C20O14717C22O14785C36O14738C44O14785C49O14799C51O14818C55O14827C56O14837C61O14846C63O14895C68O14914C74O14953C77O14964C84O14975C89O14997C91O15021C92O14722C96O15030C98O15043,, -code-creation,JS,10,38917,0x9d6055f5b96,355,basename node:path:1309:11,0x3f9e7a25b2d0,~ -code-source-info,0x9d6055f5b96,34,39650,42069,C0O39671C4O39703C12O39703C17O39738C25O39738C30O39785C32O39802C35O39829C37O39840C41O39875C47O39882C52O39896C57O39911C61O39903C66O39927C68O39938C73O39956C75O39966C76O39993C80O40000C84O40034C87O40062C91O40069C95O40076C96O40076C101O40110C106O40110C112O40154C114O40167C116O40163C121O40337C125O40370C127O40380C131O40397C135O40443C137O40464C142O40630C144O40664C146O40685C150O40712C151O40723C156O40794C158O40807C161O40807C166O40803C171O40866C178O40879C183O41015C190O41178C193O41205C198O40084C203O40044C207O41280C209O41290C214O41307C221O41342C223O41350C228O41377C233O41391C247O41398C252O41437C253O41466C257O41473C261O41480C262O41480C267O41499C272O41503C280O41542C282O41538C287O41706C291O41737C293O41747C297O41762C301O41792C303O41800C308O41920C310O41950C312O41958C316O41488C321O41448C325O41982C327O41990C332O42004C334O42014C335O42019C349O42026C354O42065,, -code-creation,JS,10,39000,0x9d6055f6146,494,Module._extensions..js node:internal/modules/cjs/loader:1389:37,0x3f9e7a276f58,~ -code-source-info,0x9d6055f6146,63,44948,46869,C0O45047C5O45061C10O45061C16O45080C18O45091C25O45101C34O45134C39O45146C40O45160C46O45188C51O45201C60O45201C67O45239C76O45243C83O45303C88O45321C93O45321C105O45441C112O45445C122O45452C127O45600C132O45618C137O45618C143O45656C146O45662C154O45704C159O45709C164O45721C174O45709C181O45766C186O45766C192O45825C211O45825C217O45996C220O46007C227O46013C232O46041C237O46079C243O46097C252O46097C262O46092C265O46210C269O46256C276O46290C279O46315C287O46322C291O46364C301O46322C308O46290C322O46256C329O46392C333O46449C344O46449C357O46418C364O46427C368O46512C374O46524C376O46559C385O46559C393O46605C396O46599C400O46637C412O46654C425O46663C438O46690C447O46721C452O46690C468O46744C473O46744C478O46809C480O46809C481O46839C486O46839C493O46868,, -code-creation,JS,10,39125,0x9d6055f65de,472,readFileSync node:fs:446:22,0x3f9e7a26ba18,~ -code-source-info,0x9d6055f65de,55,11263,12881,C0O11283C5O11304C10O11293C17O11344C24O11353C29O11375C36O11384C41O11403C46O11408C52O11431C57O11449C64O11466C67O11466C72O11449C79O11501C84O11516C91O11535C94O11557C99O11535C104O11516C110O11564C111O11589C116O11589C121O11643C129O11661C132O11664C137O11687C150O11664C156O11718C159O11718C165O11760C170O11778C173O11760C182O11794C189O11815C191O11824C193O11870C195O11915C196O11924C201O11937C206O11966C218O11975C224O12023C226O12037C227O12046C232O12070C237O12126C253O12082C259O12140C261O12147C268O12187C269O12181C276O12194C281O12059C287O12318C292O12334C302O12334C308O12359C327O12371C333O12421C334O12435C339O12452C344O12487C351O12487C358O12452C363O12523C365O12530C372O12564C373O12564C378O12218C382O12579C386O12598C391O12601C396O12601C401O12619C402O12628C407O12690C412O12706C417O12706C426O12737C428O12745C433O12775C440O12775C447O12809C453O12835C458O12852C463O12835C469O12865C471O12879,, -tick,0x10105bed8,39209,0,0x0,3,0x0,0x9d6055f0e8c,0x9d6055eee56,0x9d6055f65e8,0x9d6055f6182,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,39250,0x9d6055f6b2e,30,isEncoding node:buffer:569:40,0x3f9e7a24f990,~ -code-source-info,0x9d6055f6b2e,24,15940,16072,C0O15955C6O16003C12O16010C20O16028C23O16028C28O16056C29O16070,, -tick,0x1956951d0,40709,0,0x0,3,0x0,0x9d6055f0e8c,0x9d6055eee56,0x9d6055f65e8,0x9d6055f6182,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,40709,0x9d6055f9876,30,normalizeEncoding node:internal/util:212:27,0x3f9e7a2424f0,~ -code-source-info,0x9d6055f9876,16,5641,5746,C0O5651C7O5674C14O5692C19O5705C21O5719C22O5722C25O5729C29O5744,, -code-creation,JS,10,40750,0x9d6055f995e,9,isInt32 node:internal/validators:43:17,0x1746951fec20,~ -code-source-info,0x9d6055f995e,15,851,894,C0O863C2O887C5O876C8O892,, -code-creation,JS,10,40750,0x9d6055f9a4e,42, node:internal/fs/utils:727:42,0x3f9e7a273790,~ -code-source-info,0x9d6055f9a4e,60,19896,20054,C14O19951C19O19951C24O19985C29O19985C34O20017C37O20024C41O20052,, -code-creation,JS,10,40792,0x9d6055f9b8e,106,possiblyTransformPath node:internal/fs/utils:715:31,0x3f9e7a273740,~ -code-source-info,0x9d6055f9b8e,60,19572,19853,C0O19583C5O19598C10O19598C16O19617C22O19655C27O19662C31O19680C32O19691C39O19698C42O19698C47O19691C51O19723C56O19728C62O19750C67O19757C73O19779C80O19797C85O19809C88O19809C93O19797C98O19786C102O19832C103O19839C105O19851,, -code-creation,JS,10,40834,0x9d6055f9fce,515,stringToFlags node:internal/fs/utils:584:23,0x3f9e7a273560,~ -code-source-info,0x9d6055f9fce,60,15805,17039,C14O15833C20O15870C25O15870C30O15902C32O15915C33O15923C38O15948C42O15964C43O15972C202O16004C206O16020C207O16070C214O16088C216O16086C219O16095C220O16112C224O16126C225O16178C232O16194C234O16192C237O16201C238O16218C245O16235C247O16233C253O16245C255O16243C258O16254C259O16304C266O16321C268O16319C274O16331C276O16329C282O16342C284O16340C287O16349C288O16367C295O16384C297O16382C303O16394C305O16392C308O16401C309O16451C316O16468C318O16466C324O16478C326O16476C332O16487C334O16485C337O16494C338O16511C345O16529C347O16527C353O16539C355O16537C358O16548C359O16598C366O16616C368O16614C374O16626C376O16624C382O16637C384O16635C387O16644C388O16694C395O16712C397O16710C403O16722C405O16720C411O16733C413O16731C416O16740C417O16758C424O16776C426O16774C432O16786C434O16784C437O16793C438O16843C445O16861C447O16859C453O16871C455O16869C461O16880C463O16878C466O16887C467O16937C474O16955C476O16953C482O16965C484O16963C490O16974C492O16972C495O16981C496O16989C509O16995C514O16989,, -code-creation,JS,10,41084,0x9d6055fba06,463,Module._compile node:internal/modules/cjs/loader:1330:37,0x3f9e7a276ec8,~ -code-source-info,0x9d6055fba06,63,42944,44762,C0O42972C2O42989C4O43019C9O43019C15O43027C23O43041C25O43061C30O43073C35O43123C40O43123C46O43168C51O43168C57O43236C69O43236C75O43297C77O43305C85O43309C94O43352C101O43373C107O43467C110O43479C117O43483C125O43514C128O43536C136O43561C143O43565C152O43536C160O43527C170O43758C177O43765C182O43778C188O43778C193O43765C198O43758C204O43842C209O43855C215O43922C223O43943C229O43974C231O43970C236O43996C240O44011C246O44025C252O44044C257O44072C262O44122C267O44127C272O44127C278O44164C283O44164C289O44208C291O44239C296O44268C297O44294C300O44302C306O44319C311O44328C316O44340C324O44338C330O44359C334O44387C355O44396C363O44532C368O44571C377O44609C386O44618C395O44627C404O44635C413O44645C423O44541C429O44662C433O44688C439O44698C445O44715C450O44724C454O44734C460O44746C462O44760,, -code-creation,JS,10,41125,0x9d6055fc0f6,364,wrapSafe node:internal/modules/cjs/loader:1257:18,0x3f9e7a276e48,~ -code-source-info,0x9d6055fc0f6,63,40039,42615,C0O40039C14O40121C26O40135C31O40121C36O40405C44O40440C49O40447C54O40447C60O40481C89O40481C95O41013C101O41035C115O41105C126O41035C131O41131C145O41138C150O41182C151O41205C159O41295C196O41295C202O42014C206O42046C224O42086C229O42108C234O42109C240O42126C245O42134C253O42134C258O42253C264O42275C278O42345C289O42275C294O42385C298O42394C310O42417C315O42429C322O42440C327O42498C335O42498C340O42479C345O42549C356O42549C361O42599C363O42599,, -code-creation,JS,10,41209,0x9d6055fc4ce,118,internalCompileFunction node:internal/vm:73:33,0x3f9e7a25b7e0,~ -code-source-info,0x9d6055fc4ce,36,2177,3028,C0O2366C35O2366C41O2568C45O2604C50O2641C54O2632C58O2679C64O2704C69O2733C73O2724C77O2770C85O2817C90O2854C94O2845C98O2881C102O2930C105O2969C110O2930C115O3012C117O3026,, -code-creation,Eval,10,41375,0x9d6055fcd36,5, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1,0x9d6055fcbf0,~ -script-source,81,/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js,const cluster = require('cluster')\n\ncluster.on('fork'\x2C () => {\n throw new Error('0x does not support clustering.')\n})\n -code-source-info,0x9d6055fcd36,81,0,119,C0O0C4O119,, -code-creation,JS,10,41417,0x9d6055fce1e,29, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/no-cluster.js:1:1,0x9d6055fccb0,~ -code-source-info,0x9d6055fce1e,81,0,119,C0O16C3O16C8O44C21O44C28O118,, -code-creation,JS,10,41459,0x9d6055fd0de,52,registerImportModuleDynamically node:internal/vm:63:41,0x3f9e7a25b790,~ -code-source-info,0x9d6055fd0de,36,1818,2143,C0O1898C6O1898C11O1866C16O1958C22O1958C27O1939C32O2014C37O2082C45O1999C51O2142,, -code-creation,JS,10,41500,0x9d6055fd2ae,19,importModuleDynamicallyWrap node:internal/vm/module:429:37,0x3f9e7a27a938,~ -code-source-info,0x9d6055fd2ae,68,11681,12124,C0O11681C13O11750C18O12122,, -code-creation,JS,10,41959,0x9d6055fe26e,63,registerModule node:internal/modules/esm/utils:135:24,0x3f9e7a278680,~ -code-source-info,0x9d6055fe26e,66,4020,4540,C0O4062C2O4071C4O4070C8O4102C10O4119C12O4115C19O4170C21O4166C26O4404C27O4411C28O4455C41O4481C45O4497C50O4514C55O4514C62O4539,, -code-creation,JS,10,42000,0x9d6055fe68e,215,makeRequireFunction node:internal/modules/helpers:127:29,0x3f9e7a277b08,~ -code-source-info,0x9d6055fe68e,64,3790,6294,C0O3790C22O3849C27O3849C30O3849C32O3865C37O3873C46O3907C64O3913C69O3907C70O4005C72O4016C92O4048C97O4052C108O4068C112O4048C114O4095C119O4095C122O4095C124O4127C130O4136C136O4164C145O5314C150O5800C152O5816C156O6067C158O6081C162O6093C177O6133C185O6093C190O6199C193O6227C197O6218C201O6243C204O6266C208O6257C212O6277C214O6292,, -code-creation,JS,10,42042,0x9d6055fe93e,35,lazyModule node:internal/modules/helpers:110:20,0x3f9e7a277ab8,~ -code-source-info,0x9d6055fe93e,64,3079,3173,C0O3086C12O3107C17O3145C24O3094C30O3156C34O3171,, -tick,0x19579ebd4,42042,0,0x0,3,0x0,0x9d6055fd103,0x9d6055fc53c,0x9d6055fc1ba,0x9d6055fba4b,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,42084,0x9d6055fecae,14,require node:internal/modules/helpers:174:31,0x9d6055fe550,~ -code-source-info,0x9d6055fecae,64,5340,5464,C0O5433C3O5444C8O5444C13O5458,, -code-creation,JS,10,42084,0x9d6055fedf6,127,Module.require node:internal/modules/cjs/loader:1227:36,0x3f9e7a276dc0,~ -code-source-info,0x9d6055fedf6,63,39157,39448,C0O39166C8O39166C13O39194C15O39201C20O39215C36O39221C41O39215C42O39330C51O39342C60O39358C63O39372C76O39372C93O39427C102O39439C126O39447,, -code-creation,JS,10,42125,0x9d6055ff026,65,loadBuiltinModule node:internal/modules/helpers:93:27,0x3f9e7a277a68,~ -code-source-info,0x9d6055ff026,64,2613,2967,C0O2631C5O2650C10O2650C17O2682C18O2689C19O2777C24O2791C29O2795C34O2795C40O2806C48O2806C53O2926C58O2926C62O2954C64O2965,, -code-creation,JS,10,42125,0x9d6055ff166,18,canBeRequiredByUsers node:internal/bootstrap/realm:284:30,0x1746951f6968,~ -code-source-info,0x9d6055ff166,9,9060,9115,C0O9071C7O9103C12O9103C17O9111,, -code-creation,JS,10,42167,0x9d6055ff24e,10, node:internal/modules/helpers:37:66,0x3f9e7a2776c0,~ -code-source-info,0x9d6055ff24e,64,1032,1057,C0O1044C2O1050C9O1056,, -code-creation,JS,10,42167,0x9d6055ff3e6,145,compileForPublicLoader node:internal/bootstrap/realm:322:25,0x1746951f6b48,~ -code-source-info,0x9d6055ff3e6,9,10128,10818,C0O10137C5O10156C10O10182C15O10156C22O10309C32O10352C49O10315C54O10309C55O10389C60O10389C64O10431C70O10620C77O10651C85O10620C91O10675C96O10693C106O10709C109O10725C114O10709C118O10691C122O10750C127O10750C131O10775C136O10775C140O10806C144O10814,, -code-creation,Eval,10,42250,0x9d6055ff776,5, node:cluster:1:1,0x9d6055ff630,~ -code-source-info,0x9d6055ff776,82,0,1376,C0O0C4O1376,, -code-creation,JS,10,42292,0x9d6055ff826,47, node:cluster:1:1,0x9d6055ff6f0,~ -code-source-info,0x9d6055ff826,82,0,1376,C0O1190C5O1266C13O1245C27O1312C32O1357C37O1329C41O1327C46O1375,, -code-creation,Eval,10,42500,0x116d9d7095a6,5, node:internal/cluster/primary:1:1,0x116d9d709240,~ -code-source-info,0x116d9d7095a6,83,0,10127,C0O0C4O10127,, -code-creation,JS,10,42834,0x116d9d709f86,632, node:internal/cluster/primary:1:1,0x116d9d709520,~ -tick,0x100be3924,43000,1,0x100a09554,2,0x0,0x1067893e4,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,43209,0x116d9d70c04e,5, node:child_process:1:1,0x116d9d70baa8,~ -code-source-info,0x116d9d70c04e,84,0,27198,C0O0C4O27198,, -code-creation,JS,10,44167,0x116d9d70cc4e,881, node:child_process:1:1,0x116d9d70bfc8,~ -code-source-info,0x116d9d70cc4e,84,0,27198,C0O0C287O1159C293O1175C299O1199C305O1225C311O1247C317O1276C323O1298C329O1321C335O1343C341O1367C347O1392C353O1419C359O1438C365O1454C370O1478C376O1511C382O1534C388O1545C394O1572C400O1596C406O1626C412O1771C418O1771C423O1669C429O1693C435O1718C441O1740C447O1756C452O1827C458O1827C463O1805C469O1871C475O1871C480O1904C493O1905C499O1871C501O1989C507O1989C512O1978C518O2051C521O2051C526O2016C532O2033C538O2149C544O2149C549O2092C555O2113C560O2127C566O2187C572O2212C578O2246C584O2283C590O2307C596O2378C602O2378C607O2349C613O2363C619O2426C625O2426C630O2405C636O2594C642O2594C647O2466C653O2477C659O2500C665O2517C671O2536C677O2556C683O2574C689O2648C695O2648C699O2648C701O2766C704O2693C710O2710C716O2726C722O2742C728O2801C734O2801C736O2829C739O2837C746O2846C749O2829C751O2863C752O2863C754O6932C759O7336C769O7395C780O7299C785O13751C795O13810C806O13710C811O27068C821O27089C827O27103C833O27119C839O27127C845O27139C851O27155C857O27167C863O27175C869O27184C875O27083C880O27197,, -tick,0x1957d9538,44292,1,0x1009f5df0,5,0x0,0x1067898a4,0x116d9d70ce57,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,44667,0x116d9d712ffe,5, node:internal/child_process:1:1,0x116d9d712340,~ -code-source-info,0x116d9d712ffe,85,0,31777,C0O0C4O31777,, -code-creation,JS,10,45750,0x116d9d7146d6,1312, node:internal/child_process:1:1,0x116d9d712f78,~ -code-creation,JS,10,45792,0x116d9d714e9e,29, node:internal/child_process:536:1,0x116d9d713d70,~ -code-source-info,0x116d9d714e9e,85,13890,14887,C3O13940C12O13956C21O13981C28O14887,, -tick,0x1957d9920,45834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,46542,0x116d9d71a9b6,5, node:net:1:1,0x116d9d7193c0,~ -code-source-info,0x116d9d71a9b6,86,0,65921,C0O0C4O65921,, -code-creation,JS,10,48792,0x116d9d71e116,3499, node:net:1:1,0x116d9d71a930,~ -tick,0x100c25220,48959,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -tick,0x19571ca38,48959,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,49125,0x116d9d725426,5, node:stream:1:1,0x116d9d725220,~ -code-source-info,0x116d9d725426,87,0,4792,C0O0C4O4792,, -code-creation,JS,10,49334,0x116d9d725b46,1072, node:stream:1:1,0x116d9d7253a0,~ -tick,0x101f1eae4,49417,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,49542,0x116d9d726fae,5, node:internal/streams/operators:1:1,0x116d9d726c68,~ -code-source-info,0x116d9d726fae,88,0,10772,C0O0C4O10772,, -code-creation,JS,10,49917,0x116d9d727abe,560, node:internal/streams/operators:1:1,0x116d9d726f28,~ -code-source-info,0x116d9d727abe,88,0,10772,C0O0C163O56C166O56C171O23C177O40C183O234C186O234C191O112C196O118C202O145C208O171C213O193C219O218C225O334C228O334C233O272C239O295C245O314C251O415C254O415C259O374C265O388C271O470C274O470C279O457C285O535C288O535C292O535C294O612C297O612C302O582C308O695C311O695C316O666C322O678C328O752C331O752C336O738C341O789C347O811C353O822C359O835C365O845C371O860C377O871C383O888C389O906C395O930C400O971C403O971C407O971C409O1002C412O1002C416O1002C418O6699C439O6659C441O10462C455O10517C466O10610C472O10618C478O10628C484O10639C490O10646C496O10654C502O10495C506O10674C518O10714C524O10723C530O10734C536O10744C542O10755C548O10763C554O10708C559O10771,, -code-creation,Eval,10,50167,0x116d9d7299f6,5, node:internal/abort_controller:1:1,0x116d9d7294a0,~ -code-source-info,0x116d9d7299f6,89,0,12472,C0O0C4O12472,, -code-creation,JS,10,50584,0x116d9d72b34e,1076, node:internal/abort_controller:1:1,0x116d9d729970,~ -code-creation,JS,10,50625,0x116d9d72b99e,11, node:internal/abort_controller:378:1,0x116d9d72a428,~ -code-source-info,0x116d9d72b99e,89,10186,10842,C4O10212C10O10842,, -tick,0x19579ebd4,50667,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d727b64,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,50709,0x116d9d72cd3e,43,SafeFinalizationRegistry node:internal/per_context/primordials:440:16,0x1746951f4df0,~ -code-source-info,0x116d9d72cd3e,6,12756,12801,C3O12776C27O12776C42O12800,, -code-creation,JS,10,50792,0x116d9d72d386,155,defineEventHandler node:internal/event_target:1104:28,0x3f9e7a266a00,~ -code-source-info,0x116d9d72d386,47,29162,30601,C0O29162C24O29186C36O29280C41O29285C46O29434C56O29455C66O29509C77O29434C82O30371C92O30392C102O30446C113O30371C118O30467C125O30497C132O30534C138O30543C148O30467C154O30600,, -tick,0x19571ca54,51917,0,0x0,3,0x0,0x116d9d72b6a7,0x1067894b0,0x106789114,0x116d9d727b64,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,52042,0x116d9d73071e,5, node:internal/streams/end-of-stream:1:1,0x116d9d7303c8,~ -code-source-info,0x116d9d73071e,90,0,8360,C0O0C4O8360,, -code-creation,JS,10,52334,0x116d9d730a5e,353, node:internal/streams/end-of-stream:1:1,0x116d9d730698,~ -code-source-info,0x116d9d730a5e,90,0,8360,C0O0C120O172C126O172C131O147C137O161C142O210C148O234C154O309C160O309C165O283C171O299C177O427C183O427C188O345C194O368C200O388C206O406C212O470C218O481C224O505C230O833C236O833C241O548C247O560C253O574C259O598C265O618C271O640C277O661C283O675C289O699C295O719C301O741C307O762C313O793C319O811C325O872C326O872C328O1000C332O1000C334O8302C336O8317C340O8331C347O8348C352O8359,, -code-creation,Eval,10,52500,0x116d9d731f16,5, node:internal/streams/utils:1:1,0x116d9d731c90,~ -code-source-info,0x116d9d731f16,91,0,8416,C0O0C4O8416,, -code-creation,JS,10,52792,0x116d9d732bfe,460, node:internal/streams/utils:1:1,0x116d9d731e90,~ -code-source-info,0x116d9d732bfe,91,0,8416,C0O0C169O25C175O48C181O66C186O346C190O346C194O346C196O403C200O403C204O403C206O459C210O459C214O459C216O516C220O516C224O516C226O574C230O574C234O574C236O638C240O638C245O718C249O718C254O7817C262O7838C268O7853C274O7869C280O7884C286O7900C292O7913C298O7927C304O7941C310O7956C316O7976C322O8004C328O8019C334O8031C340O8053C346O8067C352O8081C358O8105C364O8125C370O8144C376O8166C382O8187C388O8203C394O8218C400O8232C406O8256C412O8276C418O8295C424O8317C430O8338C436O8357C442O8377C448O8394C454O7832C459O8415,, -code-creation,Eval,10,52959,0x116d9d734b66,5, node:internal/streams/compose:1:1,0x116d9d734940,~ -code-source-info,0x116d9d734b66,92,0,5451,C0O0C4O5451,, -code-creation,JS,10,53167,0x116d9d734d5e,184, node:internal/streams/compose:1:1,0x116d9d734ae0,~ -code-source-info,0x116d9d734d5e,92,0,5451,C0O0C47O36C50O36C55O23C61O89C64O89C68O89C70O147C73O147C78O133C84O316C87O316C92O194C98O210C104O224C110O238C116O253C122O274C128O294C134O442C137O442C142O361C148O382C153O388C159O415C165O482C168O482C172O482C174O526C178O541C183O5450,, -tick,0x19579ebd4,53167,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,53334,0x116d9d735ede,5, node:internal/streams/pipeline:1:1,0x116d9d735b28,~ -code-source-info,0x116d9d735ede,93,0,12326,C0O0C4O12326,, -code-creation,JS,10,53792,0x116d9d736456,421, node:internal/streams/pipeline:1:1,0x116d9d735e58,~ -code-source-info,0x116d9d736456,93,0,12326,C0O0C153O138C159O154C165O165C171O188C177O233C183O233C187O233C189O293C195O293C200O284C206O339C212O339C216O339C218O391C224O391C228O391C230O627C236O627C241O437C247O466C252O472C258O498C264O528C270O550C276O576C282O611C288O711C294O711C299O666C305O686C311O902C317O902C322O754C328O768C334O782C340O806C346O822C352O843C358O858C364O878C370O965C376O965C381O945C387O1008C388O1008C390O1025C391O1025C393O1039C394O1039C396O12281C403O12300C409O12314C415O12296C420O12325,, -code-creation,Eval,10,53917,0x116d9d737c56,5, node:internal/streams/destroy:1:1,0x116d9d7379c0,~ -code-source-info,0x116d9d737c56,94,0,6826,C0O0C4O6826,, -code-creation,JS,10,54209,0x116d9d73837e,251, node:internal/streams/destroy:1:1,0x116d9d737bd0,~ -code-source-info,0x116d9d73837e,94,0,6826,C0O0C122O106C125O106C130O25C136O54C141O60C147O90C153O144C158O245C161O245C166O179C172O195C178O210C184O224C190O298C193O298C197O298C199O337C202O337C206O337C208O6736C215O6757C221O6770C227O6783C233O6794C239O6807C245O6751C250O6825,, -code-creation,Eval,10,54334,0x116d9d73985e,5, node:internal/streams/duplex:1:1,0x116d9d7396a8,~ -code-source-info,0x116d9d73985e,95,0,4938,C0O0C4O4938,, -code-creation,JS,10,54542,0x116d9d739ed6,604, node:internal/streams/duplex:1:1,0x116d9d7397d8,~ -code-source-info,0x116d9d739ed6,95,0,4938,C0O0C33O1383C38O1409C43O1443C48O1457C53O1497C55O1512C59O1540C65O1540C69O1540C71O1595C77O1595C81O1595C83O1634C86O1662C94O1682C99O1634C104O1694C110O1694C115O1752C118O1772C123O1752C128O1838C130O1850C134O1843C139O1884C141O1888C145O1897C148O1909C155O1918C160O1934C163O1941C171O1970C178O1979C181O1959C185O1859C190O1825C194O2665C197O2695C207O2724C215O2786C224O2746C243O2841C251O2903C260O2863C279O2968C287O3030C296O2990C315O3088C323O3150C332O3110C351O3204C359O3266C368O3226C387O3322C395O3384C404O3344C423O3440C431O3502C440O3462C459O3555C467O3617C476O3577C495O3673C503O3735C512O3695C531O3784C536O3811C544O4029C558O2665C563O4306C564O4306C566O4530C573O4545C577O4668C584O4681C588O4779C589O4779C591O4791C598O4803C603O4937,, -tick,0x1956951d0,54584,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -new,MemoryChunk,0x32e0259c0000,262144 -code-creation,Eval,10,55084,0x116d9d73ceae,5, node:internal/streams/readable:1:1,0x116d9d73ba48,~ -code-source-info,0x116d9d73ceae,96,0,49050,C0O0C4O49050,, -tick,0x1957d9508,56834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d739f17,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -tick,0x1957a1074,56834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d739f17,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,56834,0x32e0259c1896,2441, node:internal/streams/readable:1:1,0x116d9d73ce28,~ -code-creation,Eval,10,57167,0x32e0259c68e6,5, node:internal/streams/legacy:1:1,0x32e0259c6770,~ -code-source-info,0x32e0259c68e6,97,0,2934,C0O0C4O2934,, -code-creation,JS,10,57292,0x32e0259c6b6e,106, node:internal/streams/legacy:1:1,0x32e0259c6860,~ -code-source-info,0x32e0259c6b6e,97,0,2934,C0O0C22O25C28O41C33O92C36O92C40O92C42O189C50O203C55O161C60O215C63O215C68O257C77O272C81O2888C88O2907C94O2915C100O2903C105O2933,, -code-creation,Eval,10,57375,0x32e0259c754e,5, node:internal/streams/add-abort-signal:1:1,0x32e0259c7358,~ -code-source-info,0x32e0259c754e,98,0,1704,C0O0C4O1704,, -code-creation,JS,10,57459,0x32e0259c77be,158, node:internal/streams/add-abort-signal:1:1,0x32e0259c74c8,~ -code-source-info,0x32e0259c77be,98,0,1704,C0O0C40O25C46O93C52O93C57O68C63O82C68O193C74O193C79O132C85O148C91O163C97O241C103O241C107O241C109O292C115O328C116O328C118O557C122O557C124O719C127O726C136O749C140O1065C143O1072C152O1105C157O1703,, -code-creation,Eval,10,57542,0x32e0259c802e,5, node:internal/streams/buffer_list:1:1,0x32e0259c7e98,~ -code-source-info,0x32e0259c802e,99,0,4060,C0O0C4O4060,, -code-creation,JS,10,57709,0x32e0259c8b1e,175, node:internal/streams/buffer_list:1:1,0x32e0259c7fa8,~ -code-source-info,0x32e0259c8b1e,99,0,4060,C0O0C20O25C26O49C31O67C37O93C43O142C46O142C51O131C57O181C60O181C65O169C71O216C120O2055C143O3869C147O3869C169O231C174O4059,, -code-creation,Eval,10,57792,0x32e0259c980e,5, node:internal/streams/state:1:1,0x32e0259c9648,~ -code-source-info,0x32e0259c980e,100,0,1332,C0O0C4O1332,, -code-creation,JS,10,57834,0x32e0259c9a96,131, node:internal/streams/state:1:1,0x32e0259c9788,~ -code-source-info,0x32e0259c9a96,100,0,1332,C0O0C45O25C51O38C57O100C60O100C65O80C71O167C74O167C79O193C84O141C90O234C94O234C96O282C98O282C100O1236C107O1257C113O1277C119O1304C125O1251C130O1331,, -code-creation,Eval,10,57917,0x32e0259ca2de,5, node:string_decoder:1:1,0x32e0259ca068,~ -code-source-info,0x32e0259ca2de,101,0,5213,C0O0C4O5213,, -code-creation,JS,10,58125,0x32e0259ca86e,388, node:string_decoder:1:1,0x32e0259ca258,~ -code-source-info,0x32e0259ca86e,101,0,5213,C0O0C70O1159C76O1180C81O1206C86O1216C92O1282C95O1282C100O1271C106O1465C109O1465C114O1311C120O1341C126O1369C132O1386C138O1404C144O1422C150O1431C156O1441C162O1450C167O1521C170O1521C174O1521C176O1627C179O1627C184O1653C189O1557C195O1581C201O1601C207O1680C213O1700C217O1686C220O1680C222O1744C225O1744C229O1744C231O2414C232O2414C234O2431C236O2448C240O2436C245O2463C250O2485C256O2490C260O2458C265O2418C269O3209C278O3225C282O3873C291O3887C295O4274C304O4289C308O4488C318O4513C323O4586C337O4818C342O4891C356O4974C361O5047C375O4451C380O5174C382O5196C387O5212,, -tick,0x19580f36c,58167,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x32e0259c1b64,0x1067894b0,0x106789114,0x116d9d739f17,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,58250,0x32e0259cbd8e,5, node:internal/streams/from:1:1,0x32e0259cbbd8,~ -code-source-info,0x32e0259cbd8e,102,0,2614,C0O0C4O2614,, -code-creation,JS,10,58375,0x32e0259cbef6,97, node:internal/streams/from:1:1,0x32e0259cbd08,~ -code-source-info,0x32e0259cbef6,102,0,2614,C0O0C32O25C38O49C44O72C50O124C53O124C58O113C64O206C67O206C72O232C77O154C83O178C89O2591C91O2606C96O2613,, -code-creation,JS,10,58459,0x32e0259cce66,33,makeBitMapDescriptor node:internal/streams/readable:120:30,0x116d9d73cee0,~ -code-source-info,0x32e0259cce66,96,3765,3958,C0O3765C9O3775C14O3811C22O3861C32O3956,, -code-creation,Eval,10,58917,0x32e0259d2b1e,5, node:internal/streams/writable:1:1,0x32e0259d1f18,~ -code-source-info,0x32e0259d2b1e,103,0,33751,C0O0C4O33751,, -code-creation,JS,10,60084,0x32e0259d4f2e,2010, node:internal/streams/writable:1:1,0x32e0259d2a98,~ -tick,0x1957d9a34,60209,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d739f23,0x1067894b0,0x106789114,0x116d9d736536,0x1067894b0,0x106789114,0x116d9d734d90,0x1067894b0,0x106789114,0x116d9d727bde,0x1067894b0,0x106789114,0x116d9d725b83,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,60292,0x32e0259d91d6,33,makeBitMapDescriptor node:internal/streams/writable:116:30,0x32e0259d2ba0,~ -code-source-info,0x32e0259d91d6,103,3773,3966,C0O3773C9O3783C14O3819C22O3869C32O3964,, -code-creation,Eval,10,60459,0x32e0259dd4ce,5, node:stream/promises:1:1,0x32e0259dd328,~ -code-source-info,0x32e0259dd4ce,104,0,917,C0O0C4O917,, -code-creation,JS,10,60500,0x32e0259dd64e,125, node:stream/promises:1:1,0x32e0259dd448,~ -code-source-info,0x32e0259dd64e,104,0,917,C0O0C28O25C34O46C40O130C43O130C48O83C54O97C60O113C66O195C69O195C74O188C80O254C83O254C88O241C93O298C96O298C100O871C107O892C113O904C119O886C124O916,, -code-creation,Eval,10,60625,0x32e0259de286,5, node:internal/streams/transform:1:1,0x32e0259de0c0,~ -code-source-info,0x32e0259de286,105,0,7368,C0O0C4O7368,, -code-creation,JS,10,60875,0x32e0259de63e,202, node:internal/streams/transform:1:1,0x32e0259de200,~ -code-source-info,0x32e0259de63e,105,0,7368,C0O0C39O3508C44O3532C49O3558C51O3573C55O3628C58O3628C63O3654C68O3596C74O3677C77O3677C81O3677C83O3742C86O3742C91O3721C97O3777C100O3808C108O3826C113O3777C118O3838C124O3838C129O3898C132O3898C136O3898C138O6278C141O6288C148O6305C152O6315C155O6325C164O6346C168O6446C171O6456C180O6473C184O7213C187O7223C196O7239C201O7367,, -tick,0x19571ca90,60917,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d725e90,0x1067894b0,0x106789114,0x116d9d71e3bb,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,60959,0x32e0259df3be,5, node:internal/streams/passthrough:1:1,0x32e0259df258,~ -code-source-info,0x32e0259df3be,106,0,1762,C0O0C4O1762,, -code-creation,JS,10,61000,0x32e0259df556,84, node:internal/streams/passthrough:1:1,0x32e0259df338,~ -code-source-info,0x32e0259df556,106,0,1762,C0O0C14O1288C19O1328C21O1343C25O1377C28O1377C32O1377C34O1416C37O1449C45O1470C50O1416C55O1482C61O1482C66O1673C69O1685C78O1706C83O1761,, -code-creation,Eval,10,61292,0x32e0259e419e,5, node:internal/stream_base_commons:1:1,0x32e0259e3e68,~ -code-source-info,0x32e0259e419e,107,0,7041,C0O0C4O7041,, -code-creation,JS,10,61542,0x32e0259e4786,514, node:internal/stream_base_commons:1:1,0x32e0259e4118,~ -code-source-info,0x32e0259e4786,107,0,7041,C0O0C130O25C136O34C141O79C144O79C149O68C155O121C158O121C163O106C169O275C172O275C177O159C183O172C189O193C195O215C201O232C207O254C213O326C216O326C221O315C227O379C230O379C235O359C241O432C244O432C249O463C254O415C260O536C263O536C268O483C274O495C280O514C286O589C289O589C294O572C300O646C303O646C308O629C314O694C317O694C322O673C328O749C331O749C335O749C337O795C340O795C344O795C346O844C349O844C353O844C355O888C358O888C362O888C364O924C367O924C371O924C373O957C376O957C381O990C394O991C400O957C402O1054C405O1054C409O1054C411O1092C414O1092C418O1092C420O1132C423O1132C427O1132C429O6836C436O6857C442O6874C448O6890C454O6906C460O6926C466O6943C472O6959C478O6970C484O6982C490O7002C496O7013C502O7026C508O6851C513O7040,, -code-creation,Eval,10,61750,0x32e0259e643e,5, node:diagnostics_channel:1:1,0x32e0259e6018,~ -code-source-info,0x32e0259e643e,108,0,9791,C0O0C4O9791,, -code-creation,JS,10,62125,0x32e0259e7dce,616, node:diagnostics_channel:1:1,0x32e0259e63b8,~ -code-source-info,0x32e0259e7dce,108,0,9791,C0O0C131O25C137O45C143O70C149O92C155O116C161O144C167O168C173O192C179O203C185O227C191O245C197O262C203O278C209O289C214O380C217O380C222O343C227O349C233O440C236O440C241O418C247O510C250O510C255O481C261O564C264O564C269O546C297O759C354O734C409O2160C427O3888C503O3717C505O4516C507O4516C512O4516C514O5148C518O5148C565O5359C567O9683C574O9704C580O9715C586O9733C592O9746C598O9764C604O9779C610O9698C615O9790,, -code-creation,JS,10,62167,0x32e0259e81ae,40, node:diagnostics_channel:35:1,0x32e0259e6920,~ -code-source-info,0x32e0259e81ae,108,734,1143,C0O734C14O785C28O785C39O1143,, -tick,0x100c25398,62209,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d71e6ae,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,62250,0x32e0259e980e,52,WeakRefMap node:diagnostics_channel:35:1,0x32e0259e6790,~ -code-source-info,0x32e0259e980e,108,734,734,C0O734C5O734C29O734C51O734,, -code-creation,JS,10,62292,0x32e0259eaaf6,70,channel node:diagnostics_channel:213:17,0x32e0259e65b0,~ -code-source-info,0x32e0259eaaf6,108,4551,4801,C0O4578C5O4587C10O4587C16O4600C18O4613C20O4628C21O4632C33O4696C51O4702C56O4696C57O4774C64O4781C69O4799,, -code-creation,JS,10,62334,0x32e0259eac26,34,get node:diagnostics_channel:45:6,0x32e0259e6830,~ -code-source-info,0x32e0259eac26,108,980,1025,C0O992C2O1005C13O1005C21O1013C26O1015C33O1021,, -code-creation,JS,10,62334,0x32e0259ead76,36,Channel node:diagnostics_channel:168:14,0x32e0259e6c00,~ -code-source-info,0x32e0259ead76,108,3746,3876,C0O3759C1O3777C5O3794C6O3807C10O3824C12O3834C16O3847C23O3856C28O3856C35O3875,, -code-creation,JS,10,62375,0x32e0259eaff6,51,set node:diagnostics_channel:40:6,0x32e0259e67e0,~ -code-source-info,0x32e0259eaff6,108,859,973,C0O878C2O883C6O895C11O895C17O921C19O934C28O947C33O943C45O934C50O969,, -code-creation,JS,10,62375,0x32e0259eb15e,37,WeakReference node:internal/util:835:14,0x3f9e7a244270,~ -code-source-info,0x32e0259eb15e,16,22980,23036,C0O22980C14O22995C21O23012C26O23008C31O23006C36O23035,, -code-creation,JS,10,62375,0x32e0259eb3ae,43,SafeWeakRef node:internal/per_context/primordials:447:16,0x1746951f4e40,~ -code-source-info,0x32e0259eb3ae,6,12965,12992,C3O12976C27O12976C42O12991,, -code-creation,Eval,10,62625,0x32e0259ec76e,5, node:internal/perf/observe:1:1,0x32e0259ec100,~ -code-source-info,0x32e0259ec76e,109,0,16722,C0O0C4O16722,, -code-creation,JS,10,63250,0x32e0259ede7e,1209, node:internal/perf/observe:1:1,0x32e0259ec6e8,~ -code-creation,JS,10,63292,0x32e0259ee5ae,50, node:internal/perf/observe:243:1,0x32e0259ed0d8,~ -code-source-info,0x32e0259ee5ae,109,5936,9533,C3O5976C13O5996C20O5996C34O6013C43O6022C49O9533,, -tick,0x101f1e490,63334,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d71e6dd,0x1067894b0,0x106789114,0x116d9d7148cc,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,63459,0x32e0259f022e,5, node:internal/perf/performance_entry:1:1,0x32e0259f0038,~ -code-source-info,0x32e0259f022e,110,0,3272,C0O0C4O3272,, -code-creation,JS,10,63584,0x32e0259f0efe,370, node:internal/perf/performance_entry:1:1,0x32e0259f01a8,~ -code-source-info,0x32e0259f0efe,110,0,3272,C0O0C53O25C58O51C63O134C66O134C71O94C76O100C82O231C85O231C90O194C95O206C100O291C103O291C108O265C114O344C117O344C122O332C128O376C131O376C135O376C137O428C140O428C144O428C146O485C149O485C153O485C155O541C158O541C162O541C164O594C167O594C171O594C173O652C176O652C180O652C211O1595C238O750C240O2067C243O2107C255O2128C261O2162C267O2196C273O2229C279O2260C283O2067C291O2518C319O2483C321O3114C328O3135C334O3161C340O3181C346O3203C352O3227C358O3257C364O3129C369O3271,, -code-creation,JS,10,63750,0x32e0259f2e06,34,protoGetter node:net:866:21,0x116d9d71af88,~ -code-source-info,0x32e0259f2e06,86,22667,22829,C0O22688C8O22716C13O22727C20O22812C27O22688C33O22828,, -code-creation,JS,11,63792,0x10678b520,312,protoGetter node:net:866:21,0x116d9d71af88,^ -code-source-info,0x10678b520,86,22667,22829,,, -code-creation,JS,11,63834,0x10678b680,1760,Module._nodeModulePaths node:internal/modules/cjs/loader:793:37,0x3f9e7a276950,^ -code-source-info,0x10678b680,63,24237,25417,,, -code-creation,JS,11,63834,0x10678bd80,64,toNamespacedPath node:path:1269:19,0x3f9e7a25b230,^ -code-source-info,0x10678bd80,34,38744,38804,,, -code-creation,JS,11,63834,0x10678bde0,208,nextPart node:fs:2600:31,0x3f9e7a26d460,^ -code-source-info,0x10678bde0,55,68560,68618,,, -code-creation,JS,11,63875,0x10678bec0,368,isFileType node:fs:206:20,0x3f9e7a26b5b8,^ -code-source-info,0x10678bec0,55,5086,5327,,, -code-creation,JS,11,63875,0x10678c040,1568,dirname node:path:1278:10,0x3f9e7a25b280,^ -code-source-info,0x10678c040,34,38877,39546,,, -code-creation,JS,11,63917,0x10678c680,336,validateString node:internal/validators:160:24,0x1746951ff078,^ -code-source-info,0x10678c680,15,4120,4229,,, -code-creation,JS,11,63917,0x10678c7e0,328,makeBitMapDescriptor node:internal/streams/readable:120:30,0x116d9d73cee0,^ -code-source-info,0x10678c7e0,96,3765,3958,,, -code-creation,JS,11,63959,0x10678c940,328,makeBitMapDescriptor node:internal/streams/writable:116:30,0x32e0259d2ba0,^ -code-source-info,0x10678c940,103,3773,3966,,, -code-creation,JS,11,63959,0x10678caa0,1056,getDeprecationWarningEmitter node:internal/util:111:38,0x3f9e7a241d30,^ -code-source-info,0x10678caa0,16,2733,3345,,, -code-creation,Eval,10,64334,0x32e0259f9e8e,5, node:dgram:1:1,0x32e0259f98e8,~ -code-source-info,0x32e0259f9e8e,111,0,28253,C0O0C4O28253,, -code-creation,JS,10,65292,0x32e0259fbff6,1627, node:dgram:1:1,0x32e0259f9e08,~ -tick,0x1957d9920,65417,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x116d9d7148d8,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,65500,0x32e0259ff676,5, node:internal/dgram:1:1,0x32e0259ff470,~ -code-source-info,0x32e0259ff676,112,0,1851,C0O0C4O1851,, -code-creation,JS,10,65584,0x32e0259ff93e,199, node:internal/dgram:1:1,0x32e0259ff5f0,~ -code-source-info,0x32e0259ff93e,112,0,1851,C0O0C56O25C62O50C67O94C73O94C78O84C83O138C86O138C91O130C97O195C103O195C108O175C114O264C120O264C125O231C131O242C137O318C140O318C145O304C151O351C157O404C160O404C165O432C166O432C168O1777C175O1798C181O1814C187O1837C193O1792C198O1850,, -tick,0x100a951f0,65625,1,0x1009f5df0,6,0x0,0x1067898a4,0x32e0259ff994,0x1067894b0,0x106789114,0x32e0259fc15d,0x1067894b0,0x106789114,0x116d9d7148d8,0x1067894b0,0x106789114,0x116d9d70cf05,0x1067894b0,0x106789114,0x116d9d70a068,0x1067894b0,0x106789114,0x9d6055ff84b,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x9d6055fce21,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -new,MemoryChunk,0x113956500000,262144 -code-creation,Eval,10,65792,0x11395650574e,5, node:internal/socket_list:1:1,0x1139565055f8,~ -code-source-info,0x11395650574e,113,0,2709,C0O0C4O2709,, -code-creation,JS,10,65875,0x113956505d8e,124, node:internal/socket_list:1:1,0x1139565056c8,~ -code-source-info,0x113956505d8e,113,0,2709,C0O0C8O57C11O57C16O83C21O23C27O113C30O113C35O218C72O1527C99O2653C106O2672C112O2688C118O2668C123O2708,, -code-creation,JS,10,65959,0x11395650709e,14,customPromiseExecFunction node:child_process:239:35,0x116d9d70c770,~ -code-source-info,0x11395650709e,84,6932,7296,C0O6932C9O6946C13O7294,, -code-creation,Eval,10,66042,0x113956509cfe,5, node:internal/cluster/round_robin_handle:1:1,0x113956509af8,~ -code-source-info,0x113956509cfe,114,0,3453,C0O0C4O3453,, -code-creation,JS,10,66167,0x11395650a0be,208, node:internal/cluster/round_robin_handle:1:1,0x113956509c78,~ -code-source-info,0x11395650a0be,114,0,3453,C0O0C46O25C52O41C58O52C64O94C67O94C71O94C73O134C76O134C80O134C82O173C85O173C90O158C96O256C99O256C104O216C110O224C116O230C122O239C128O245C134O310C137O310C142O296C148O340C150O355C154O1336C163O1350C167O2001C176O2018C180O2399C189O2420C193O2862C202O2880C207O3452,, -code-creation,Eval,10,66250,0x11395650aa26,5, node:internal/cluster/utils:1:1,0x11395650a8b0,~ -code-source-info,0x11395650aa26,115,0,1054,C0O0C4O1054,, -code-creation,JS,10,66292,0x11395650abe6,72, node:internal/cluster/utils:1:1,0x11395650a9a0,~ -code-source-info,0x11395650abe6,115,0,1054,C0O0C24O25C30O41C35O68C42O89C48O103C54O83C58O135C60O135C65O135C67O160C68O160C71O1053,, -code-creation,Eval,10,66375,0x11395650b2e6,5, node:internal/cluster/shared_handle:1:1,0x11395650b160,~ -code-source-info,0x11395650b2e6,116,0,1102,C0O0C4O1102,, -code-creation,JS,10,66417,0x11395650b51e,89, node:internal/cluster/shared_handle:1:1,0x11395650b260,~ -code-source-info,0x11395650b51e,116,0,1102,C0O0C22O22C28O62C31O62C35O62C37O104C40O104C44O104C46O143C49O143C53O143C55O160C57O175C61O685C70O699C74O861C83O878C88O1101,, -code-creation,Eval,10,66459,0x11395650bb76,5, node:internal/cluster/worker:1:1,0x11395650b9f0,~ -code-source-info,0x11395650bb76,117,0,1379,C0O0C4O1379,, -code-creation,JS,10,66542,0x11395650beee,158, node:internal/cluster/worker:1:1,0x11395650baf0,~ -code-source-info,0x11395650beee,117,0,1379,C0O0C20O25C25O49C31O102C34O102C38O102C40O147C43O147C48O130C54O174C56O189C60O876C63O904C71O928C76O876C81O940C87O940C92O985C95O992C104O1007C108O1073C111O1080C120O1095C124O1181C127O1188C136O1205C140O1299C143O1306C152O1328C157O1378,, -code-creation,JS,10,66625,0x11395650cf46,170,getESMFacade node:internal/bootstrap/realm:340:15,0x1746951f6b98,~ -code-source-info,0x11395650cf46,9,10834,11584,C0O10834C8O10852C14O10872C18O10879C19O10907C29O10907C34O10892C39O11025C46O11057C53O11025C58O11091C61O11104C70O11130C72O11130C74O11160C81O11185C86O11160C91O11202C101O11202C106O11250C108O11302C121O11264C126O11262C130O11498C135O11505C140O11505C144O11529C149O11536C159O11536C165O11573C169O11580,, -code-creation,JS,10,66667,0x11395650d47e,40, node:internal/bootstrap/realm:351:15,0x11395650ce30,~ -code-source-info,0x11395650d47e,9,11329,11424,C0O11342C5O11350C10O11350C14O11378C24O11399C27O11407C32O11378C39O11423,, -code-creation,JS,10,66667,0x11395650d5ee,90,syncExports node:internal/bootstrap/realm:365:14,0x1746951f6c10,~ -code-source-info,0x11395650d5ee,9,11891,12224,C0O11919C5O11944C11O11973C13O11986C17O11978C22O12028C24O12033C28O12046C30O12061C35O12076C37O12099C42O12106C51O12158C54O12170C59O12196C67O12158C73O12106C79O11995C84O11960C89O12223,, -code-creation,JS,10,66709,0x11395650d786,35,getOwn node:internal/bootstrap/realm:202:16,0x1746951f6648,~ -code-source-info,0x11395650d786,9,6377,6531,C0O6413C5O6420C14O6474C26O6474C34O6529,, -code-creation,JS,10,66750,0x11395650daae,16, node:internal/modules/cjs/loader:122:3,0x3f9e7a275f60,~ -code-source-info,0x11395650daae,63,3697,3751,C0O3741C6O3703C11O3741C15O3751,, -code-creation,Eval,10,66792,0x11395650de9e,5, node:internal/process/esm_loader:1:1,0x11395650dcc8,~ -code-source-info,0x11395650de9e,118,0,1190,C0O0C4O1190,, -code-creation,JS,10,66875,0x11395650e096,146, node:internal/process/esm_loader:1:1,0x11395650de18,~ -code-source-info,0x11395650e096,118,0,1190,C0O0C34O25C40O100C43O100C48O77C54O167C57O167C62O148C68O247C71O247C76O206C82O322C85O322C90O294C96O308C102O353C103O353C105O365C110O462C140O380C145O1189,, -tick,0x195679d3c,66917,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x11395650dab4,0x9d6055de01b,0x9d6055f565e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,67084,0x11395650f16e,5, node:internal/modules/esm/loader:1:1,0x11395650ed10,~ -code-source-info,0x11395650f16e,119,0,22028,C0O0C4O22028,, -code-creation,JS,10,67834,0x11395651030e,597, node:internal/modules/esm/loader:1:1,0x11395650f0e8,~ -code-source-info,0x11395651030e,119,0,22028,C0O0C123O79C129O79C133O130C139O152C145O173C151O197C157O222C163O239C168O263C174O295C180O310C186O332C192O424C198O424C203O450C208O374C214O393C220O485C226O485C231O466C237O547C243O547C248O522C254O537C260O608C266O608C271O580C277O670C283O670C288O644C294O713C295O713C297O729C298O729C300O742C301O742C303O759C304O759C306O1876C307O1876C481O2304C483O15240C486O15274C493O15240C561O15293C563O17836C564O17836C566O21955C573O21976C579O21998C585O22015C591O21970C596O22027,, -code-creation,JS,10,67875,0x11395651068e,7, node:internal/modules/esm/loader:456:1,0x11395650fb88,~ -code-source-info,0x11395651068e,119,15293,17803,C0O15352C6O17803,, -code-creation,JS,10,67875,0x11395651074e,95, node:internal/modules/esm/loader:83:1,0x11395650f8d0,~ -code-source-info,0x11395651074e,119,2304,15239,C3O2434C10O2434C18O2530C25O2530C34O2648C42O2719C47O2719C55O2822C60O2822C67O2944C72O2944C80O3172C88O3551C94O15239,, -code-creation,JS,10,67959,0x11395651252e,29,get esmLoader node:internal/process/esm_loader:17:16,0x11395650df40,~ -code-source-info,0x11395651252e,118,399,458,C0O408C10O429C15O429C22O425C28O454,, -code-creation,JS,10,68000,0x113956512a9e,193,createModuleLoader node:internal/modules/esm/loader:530:28,0x11395650f290,~ -code-source-info,0x113956512a9e,119,18326,19981,C10O18386C12O18394C22O18601C27O18638C32O18639C38O18687C46O18687C51O18752C57O18759C62O18772C75O18839C79O18839C81O19344C86O19352C101O19587C108O19619C111O19637C116O19619C125O19587C140O19459C147O19352C153O19832C159O19857C169O19879C174O19896C180O19939C187O19946C192O19979,, -code-creation,JS,10,68042,0x113956514076,5,isLoaderWorker node:internal/modules/esm/utils:205:24,0x3f9e7a2787c0,~ -code-source-info,0x113956514076,66,6908,6940,C0O6915C4O6938,, -code-creation,JS,10,68042,0x1139565141ae,66,ModuleLoader node:internal/modules/esm/loader:132:14,0x11395650f3d0,~ -code-source-info,0x1139565141ae,119,3582,3764,C5O3582C24O3605C34O3609C40O3667C50O3667C54O3726C59O3726C65O3763,, -code-creation,JS,10,68084,0x1139565143b6,21,getDefaultConditions node:internal/modules/esm/utils:41:30,0x3f9e7a278358,~ -code-source-info,0x1139565143b6,66,955,1032,C0O962C7O969C10O987C12O962C16O1005C20O1030,, -code-creation,JS,10,68084,0x11395651467e,22,newResolveCache node:internal/modules/esm/loader:35:25,0x11395650f1a0,~ -code-source-info,0x11395651467e,119,950,1056,C0O982C6O982C11O965C16O1035C21O1054,, -tick,0x100bed558,68125,1,0x100a09554,2,0x0,0x1067893e4,0x106789114,0x113956514684,0x11395651077d,0x1139565141bf,0x113956512b59,0x11395651253d,0x11395650dab9,0x9d6055de01b,0x9d6055f565e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,68167,0x113956514bd6,5, node:internal/modules/esm/module_map:1:1,0x113956514920,~ -code-source-info,0x113956514bd6,120,0,3877,C0O0C4O3877,, -code-creation,JS,10,68334,0x11395651542e,299, node:internal/modules/esm/module_map:1:1,0x113956514b50,~ -code-source-info,0x11395651542e,120,0,3877,C0O0C36O25C42O47C48O68C54O90C60O107C66O121C71O179C77O179C82O155C88O231C94O231C99O264C112O265C118O231C120O342C126O342C131O368C136O317C142O403C148O403C153O384C179O838C227O811C231O2832C274O3826C281O3847C287O3860C293O3841C298O3876,, -code-creation,Eval,10,68417,0x113956515f26,5, node:internal/modules/esm/assert:1:1,0x113956515d20,~ -code-source-info,0x113956515f26,121,0,3876,C0O0C4O3876,, -code-creation,JS,10,68542,0x113956516206,210, node:internal/modules/esm/assert:1:1,0x113956515ea0,~ -code-source-info,0x113956516206,121,0,3876,C0O0C49O25C54O49C60O75C66O89C71O105C77O180C80O180C85O161C91O375C94O375C99O401C104O223C110O259C116O296C122O337C128O502C130O502C132O692C139O728C145O763C151O814C157O845C163O692C165O1271C168O1295C178O1271C183O1271C185O3809C192O3830C198O3853C204O3824C209O3875,, -code-creation,JS,10,68625,0x113956516856,9, node:internal/modules/esm/assert:44:3,0x113956515ff8,~ -code-source-info,0x113956516856,121,1326,1364,C0O1341C2O1345C4O1341C8O1364,, -code-creation,JS,10,68625,0x11395651721e,53,ResolveCache node:internal/modules/esm/module_map:26:14,0x113956514ca8,~ -code-source-info,0x11395651721e,120,861,878,C3O867C27O867C52O877,, -code-creation,JS,10,68667,0x11395651783e,22,newLoadCache node:internal/modules/esm/loader:44:22,0x11395650f1f0,~ -code-source-info,0x11395651783e,119,1233,1333,C0O1262C6O1262C11O1248C16O1315C21O1331,, -code-creation,JS,10,68667,0x113956517916,43,LoadCache node:internal/modules/esm/module_map:90:14,0x113956514e38,~ -code-source-info,0x113956517916,120,2855,2872,C3O2861C27O2861C42O2871,, -code-creation,JS,10,68709,0x113956517afe,17,getTranslators node:internal/modules/esm/loader:53:24,0x11395650f240,~ -code-source-info,0x113956517afe,119,1518,1617,C0O1549C6O1549C11O1533C16O1615,, -code-creation,Eval,10,68875,0x11395651867e,5, node:internal/modules/esm/translators:1:1,0x1139565181a8,~ -code-source-info,0x11395651867e,122,0,19320,C0O0C4O19320,, -code-creation,JS,10,69584,0x113956518f96,796, node:internal/modules/esm/translators:1:1,0x1139565185f8,~ -code-source-info,0x113956518f96,122,0,19320,C0O0C208O25C214O46C220O57C226O70C232O94C238O127C244O141C250O157C256O178C261O189C267O200C273O227C279O256C285O280C291O309C297O319C303O355C308O357C314O448C315O448C317O673C320O673C325O648C331O719C337O719C341O719C343O772C349O772C354O755C360O828C366O828C371O795C377O804C383O813C389O890C395O890C400O855C406O876C412O977C418O977C423O945C429O958C435O1063C441O1063C446O1025C452O1040C458O1055C464O1100C470O1100C475O1133C488O1134C494O1100C496O1244C502O1244C507O1186C513O1211C519O1225C525O1349C531O1349C536O1375C541O1280C547O1310C553O1415C559O1415C564O1391C570O1483C573O1483C578O1523C584O1567C590O1567C594O1567C596O1635C602O1635C607O1615C613O1708C619O1708C624O1680C630O1799C631O1799C633O2447C635O2447C641O2462C643O2482C647O2497C649O2520C653O2553C654O2553C656O4909C669O4909C675O9562C677O9562C682O9562C684O11512C697O11512C703O11800C716O11800C722O15500C735O15500C741O15979C744O15987C751O15996C754O15979C756O16021C769O16021C775O18361C788O18361C795O19319,, -tick,0x19579ebd4,69625,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x113956517b04,0x113956510796,0x1139565141bf,0x113956512b59,0x11395651253d,0x11395650dab9,0x9d6055de01b,0x9d6055f565e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,69667,0x11395651a9b6,30,setCustomizations node:internal/modules/esm/loader:187:20,0x11395650f420,~ -code-source-info,0x11395651a9b6,119,5321,5548,C0O5344C5O5365C9O5387C13O5460C17O5443C23O5503C24O5531C29O5547,, -code-creation,Eval,10,70000,0x11395651ae0e,5, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1,0x11395651ac68,~ -script-source,123,/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js,'use strict'\nconst net = require('net')\n\nlet isWorker = false\ntry {\n // Skip redirecting stdout in Worker threads.\n isWorker = !require('worker_threads').isMainThread\n} catch (e) {}\n\nif (!isWorker) {\n const socket = new net.Socket({\n fd: 3\x2C\n readable: false\x2C\n writable: true\n })\n Object.defineProperty(process\x2C 'stdout'\x2C {\n configurable: true\x2C\n enumerable: true\x2C\n get: () => socket\n })\n Object.defineProperty(process.stdout\x2C 'fd'\x2C {\n value: socket._handle.fd\n })\n}\n -code-source-info,0x11395651ae0e,123,0,494,C0O0C4O494,, -code-creation,JS,10,70042,0x11395651b0b6,157, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:1:1,0x11395651ad88,~ -code-source-info,0x11395651b0b6,123,0,494,C0O25C3O25C8O56C13O118C16O130C21O155C30O127C42O185C53O227C65O219C70O219C72O294C76O301C81O316C93O392C101O301C106O412C110O419C115O434C119O442C135O476C140O484C148O419C156O493,, -code-creation,JS,10,70084,0x11395651b6ce,37,get BlockList node:net:2373:16,0x116d9d71d3b8,~ -code-source-info,0x11395651b6ce,86,65392,65481,C0O65401C14O65415C19O65444C26O65411C32O65460C36O65477,, -code-creation,Eval,10,70167,0x11395651bbce,5, node:internal/blocklist:1:1,0x11395651b9e8,~ -code-source-info,0x11395651bbce,124,0,3880,C0O0C4O3880,, -code-creation,JS,10,70292,0x11395651c5de,357, node:internal/blocklist:1:1,0x11395651bb48,~ -code-source-info,0x11395651c5de,124,0,3880,C0O0C35O25C41O36C46O60C51O128C54O128C59O107C65O205C68O205C73O191C78O294C81O294C86O242C92O268C98O386C101O386C106O340C111O358C116O368C121O451C124O451C129O439C135O502C138O502C142O502C144O546C147O546C152O529C158O612C161O612C166O638C171O585C177O689C180O689C185O655C191O670C197O746C204O885C241O3226C251O3387C277O3522C299O3694C304O3728C309O3738C313O3716C317O3790C322O3811C327O3751C332O3824C339O3845C345O3858C351O3839C356O3879,, -code-creation,Eval,10,70417,0x11395651e116,5, node:internal/socketaddress:1:1,0x11395651df10,~ -code-source-info,0x11395651e116,125,0,3388,C0O0C4O3388,, -code-creation,JS,10,70542,0x11395651ec4e,373, node:internal/socketaddress:1:1,0x11395651e090,~ -code-source-info,0x11395651ec4e,125,0,3388,C0O0C41O25C46O49C51O143C54O143C59O100C65O118C71O129C77O257C80O257C85O185C91O203C97O221C103O237C109O345C112O345C117O307C122O313C128O435C131O435C136O405C141O417C147O482C150O482C155O470C161O573C164O573C169O527C174O545C179O555C184O634C187O634C191O634C193O669C196O669C200O669C202O717C235O2097C245O2340C255O2509C287O2904C309O3169C314O3209C319O3219C323O3191C327O3275C332O3300C337O3232C342O3313C349O3334C355O3351C361O3376C367O3328C372O3387,, -code-creation,JS,10,70625,0x11395651fece,37,get SocketAddress node:net:2377:20,0x116d9d71d430,~ -code-source-info,0x11395651fece,86,65502,65607,C0O65511C14O65529C19O65562C26O65525C32O65582C36O65603,, -tick,0x1014ddc00,70667,0,0x0,0,0x1014feb48,0x11395650d7a0,0x11395650d631,0x11395650d488,0x1009e90b8,0x11395650cfe5,0x9d6055ff465,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x11395651b0b9,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,70709,0x1139565202b6,5, node:worker_threads:1:1,0x113956520170,~ -script-source,126,node:worker_threads,'use strict';\n\nconst {\n isMainThread\x2C\n SHARE_ENV\x2C\n resourceLimits\x2C\n setEnvironmentData\x2C\n getEnvironmentData\x2C\n threadId\x2C\n Worker\x2C\n} = require('internal/worker');\n\nconst {\n MessagePort\x2C\n MessageChannel\x2C\n moveMessagePortToContext\x2C\n receiveMessageOnPort\x2C\n BroadcastChannel\x2C\n} = require('internal/worker/io');\n\nconst {\n markAsUntransferable\x2C\n} = require('internal/buffer');\n\nmodule.exports = {\n isMainThread\x2C\n MessagePort\x2C\n MessageChannel\x2C\n markAsUntransferable\x2C\n moveMessagePortToContext\x2C\n receiveMessageOnPort\x2C\n resourceLimits\x2C\n threadId\x2C\n SHARE_ENV\x2C\n Worker\x2C\n parentPort: null\x2C\n workerData: null\x2C\n BroadcastChannel\x2C\n setEnvironmentData\x2C\n getEnvironmentData\x2C\n};\n -code-source-info,0x1139565202b6,126,0,687,C0O0C4O687,, -code-creation,JS,10,70750,0x1139565204c6,180, node:worker_threads:1:1,0x113956520230,~ -code-source-info,0x1139565204c6,126,0,687,C0O140C3O140C8O25C13O41C18O54C23O72C28O94C33O116C38O128C43O286C46O286C51O179C56O194C61O212C66O240C71O264C76O354C79O354C84O328C89O383C96O404C102O420C108O435C114O453C120O477C126O505C132O529C138O547C144O559C150O572C156O622C162O642C168O664C174O398C179O686,, -code-creation,Eval,10,71042,0x113956521d0e,5, node:internal/worker:1:1,0x113956521100,~ -code-source-info,0x113956521d0e,127,0,16395,C0O0C4O16395,, -code-creation,JS,10,71625,0x1139565232e6,1343, node:internal/worker:1:1,0x113956521c88,~ -code-creation,Eval,10,71750,0x113956525276,5, node:internal/perf/event_loop_utilization:1:1,0x1139565250e0,~ -code-source-info,0x113956525276,128,0,1527,C0O0C4O1527,, -code-creation,JS,10,71834,0x113956525426,85, node:internal/perf/event_loop_utilization:1:1,0x1139565251f0,~ -code-source-info,0x113956525426,128,0,1527,C0O0C29O120C32O120C37O36C42O42C48O88C54O104C60O1449C67O1470C73O1502C79O1464C84O1526,, -tick,0x1010bedec,71917,1,0x100a09554,2,0x0,0x1067893e4,0x106789114,0x113956523505,0x1067894b0,0x106789114,0x1139565204c9,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x11395651b0c6,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,Eval,10,72084,0x1139565263d6,5, node:internal/worker/io:1:1,0x113956525f50,~ -code-source-info,0x1139565263d6,129,0,15479,C0O0C4O15479,, -code-creation,JS,10,72667,0x11395652837e,1709, node:internal/worker/io:1:1,0x113956526350,~ -code-creation,Eval,10,72959,0x11395652c2a6,5, node:internal/error_serdes:1:1,0x11395652bf10,~ -code-source-info,0x11395652c2a6,130,0,5723,C0O0C4O5723,, -code-creation,JS,10,73167,0x11395652c776,448, node:internal/error_serdes:1:1,0x11395652c220,~ -code-source-info,0x11395652c776,130,0,5723,C0O0C138O30C144O30C149O47C153O30C155O66C161O91C166O100C171O113C177O138C183O154C189O170C195O194C201O228C207O257C213O281C218O295C224O322C229O336C234O354C239O365C245O387C251O415C257O436C262O451C268O464C273O477C279O509C285O545C291O581C296O661C302O661C307O625C312O635C318O704C319O704C321O733C323O733C325O760C327O760C329O788C331O788C333O822C335O822C337O854C340O864C344O854C346O888C353O892C359O899C365O910C371O922C377O932C383O945C389O961C395O888C397O1005C400O1017C407O1005C412O1005C414O2716C415O2716C417O2913C418O2913C420O4448C421O4448C423O5668C430O5687C436O5703C442O5683C447O5722,, -tick,0x19571ca90,73209,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x113956523559,0x1067894b0,0x106789114,0x1139565204c9,0x1067894b0,0x9d6055ff422,0x9d6055ff060,0x9d6055dec4b,0x9d6055fee42,0x9d6055fecb6,0x11395651b0c6,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,10,73375,0x11395652ea66,932,Socket node:net:353:16,0x116d9d71adf8,~ -code-creation,JS,10,73459,0x11395652f1a6,166,Duplex node:internal/streams/duplex:54:16,0x116d9d739890,~ -code-source-info,0x11395652f1a6,95,2011,2663,C0O2025C2O2036C7O2060C12O2067C17O2087C18O2091C23O2100C28O2100C34O2123C39O2132C44O2132C50O2156C54O2204C62O2218C63O2194C67O2246C77O2279C83O2303C87O2323C93O2344C97O2363C103O2389C107O2420C117O2453C123O2477C127O2497C133O2519C137O2538C143O2559C147O2578C153O2602C159O2631C160O2650C165O2662,, -code-creation,JS,10,73500,0x11395652f926,220,Readable node:internal/streams/readable:314:18,0x116d9d73cfa8,~ -code-source-info,0x11395652f926,96,10487,11358,C0O10487C9O10501C16O10512C21O10538C28O10545C33O10567C34O10722C41O10738C44O10745C48O10727C52O10756C71O10778C76O10776C80O10825C84O10863C92O10890C95O10911C99O10901C103O10941C111O10971C114O10995C118O10985C122O11028C130O11060C133O11086C137O11076C141O11114C149O11125C151O11141C158O11164C166O11141C171O11186C178O11193C186O11193C192O11217C199O11229C212O11229C219O11357,, -code-creation,JS,10,73542,0x11395652fb76,18,Stream node:internal/streams/legacy:10:16,0x32e0259c6918,~ -code-source-info,0x11395652fb76,97,127,160,C0O138C5O141C10O141C17O159,, -code-creation,JS,10,73625,0x1139565308e6,402,ReadableState node:internal/streams/readable:253:23,0x116d9d73cf58,~ -code-source-info,0x1139565308e6,96,7949,10467,C0O8287C6O8326C8O8355C11O8362C15O8344C20O8489C22O8494C27O8504C32O8517C34O8515C40O8532C42O8530C48O8547C50O8545C53O8502C57O8678C61O8701C67O8713C69O8718C78O8729C83O8726C87O8745C93O8761C95O8780C101O8804C103O8809C112O8820C117O8817C121O8978C126O8999C130O9013C145O9013C154O9086C159O9086C163O8997C167O9289C169O9307C172O9303C177O9301C181O9323C182O9335C186O9342C188O9353C192O9421C196O9444C206O9465C208O9470C217O9482C219O9481C224O9478C228O9570C232O9593C242O9616C244O9621C253O9633C255O9632C260O9629C264O9869C271O9876C279O9897C284O9944C291O9974C296O9993C298O9998C307O10009C312O10006C318O10040C323O10051C328O10051C335O10086C337O10107C343O10141C350O10147C355O10141C356O10299C357O10322C361O10333C365O10356C371O10372C373O10391C376O10413C383O10387C388O10385C392O10452C396O10442C401O10466,, -code-creation,JS,10,73667,0x113956530d5e,98,getHighWaterMark node:internal/streams/state:32:26,0x32e0259c9930,~ -code-source-info,0x113956530d5e,100,826,1234,C0O880C12O880C18O931C21O954C26O959C33O987C38O1013C47O1035C56O1080C69O1086C74O1080C75O1134C80O1141C84O1156C85O1183C88O1220C93O1190C97O1232,, -code-creation,JS,10,73709,0x113956531066,26,highWaterMarkFrom node:internal/streams/state:14:27,0x32e0259c9840,~ -code-source-info,0x113956531066,100,313,454,C0O363C7O395C15O415C19O433C25O452,, -code-creation,JS,10,73709,0x113956531156,22,get node:internal/streams/readable:123:8,0x32e0259ccd08,~ -code-source-info,0x113956531156,96,3814,3855,C0O3819C4O3832C6O3831C12O3840C17O3847C21O3853,, -code-creation,JS,10,73750,0x11395653124e,15,getDefaultHighWaterMark node:internal/streams/state:19:33,0x32e0259c9890,~ -code-source-info,0x11395653124e,100,488,586,C0O505C6O525C12O558C14O584,, -code-creation,JS,10,73750,0x1139565313ce,17,BufferList node:internal/streams/buffer_list:14:14,0x32e0259c8060,~ -code-source-info,0x1139565313ce,99,265,338,C0O274C1O284C5O296C6O306C10O318C11O330C16O337,, -code-creation,JS,10,73792,0x113956531eee,98,construct node:internal/streams/destroy:219:19,0x116d9d737f58,~ -code-source-info,0x113956531eee,94,4433,4821,C0O4468C8O4501C9O4508C10O4533C15O4568C20O4587C24O4600C25O4614C29O4629C33O4642C34O4656C38O4679C45O4684C48O4679C54O4715C61O4729C64O4715C72O4741C77O4766C78O4773C79O4781C82O4789C90O4789C97O4820,, -code-creation,JS,10,73834,0x113956532c06,266,Writable node:internal/streams/writable:375:18,0x32e0259d2cb8,~ -code-source-info,0x113956532c06,103,12486,14066,C0O12486C9O13060C16O13077C19O13084C23O13066C27O13096C33O13114C44O13114C51O13170C58O13177C63O13199C64O13203C83O13225C88O13223C92O13272C96O13310C104O13338C107O13360C111O13350C115O13391C123O13420C126O13443C130O13433C134O13475C142O13505C145O13529C149O13519C153O13562C161O13590C164O13612C168O13602C172O13643C180O13675C183O13701C187O13691C191O13729C197O13743C204O13766C212O13743C217O13788C224O13795C232O13795C238O13819C245O13831C258O13831C265O14065,, -code-creation,JS,10,73917,0x113956532fd6,441,WritableState node:internal/streams/writable:292:23,0x32e0259d2c18,~ -code-source-info,0x113956532fd6,103,9280,11922,C0O9614C6O9653C8O9682C11O9689C15O9671C20O9816C22O9821C27O9831C32O9839C34O9837C40O9854C42O9852C48O9867C50O9865C53O9829C57O9884C61O9907C67O9919C69O9924C78O9935C83O9932C87O9950C93O9966C95O9985C101O10005C103O10010C112O10021C117O10018C121O10222C126O10243C130O10257C145O10257C154O10330C159O10330C163O10241C167O10365C171O10389C181O10414C183O10419C192O10430C197O10427C201O10508C205O10531C215O10552C217O10557C226O10569C228O10568C233O10565C237O10657C241O10680C251O10703C253O10708C262O10720C264O10719C269O10716C273O10956C280O10963C288O10984C293O11031C300O11061C305O11080C307O11085C316O11096C321O11093C327O11127C332O11138C337O11138C344O11173C346O11178C355O11190C357O11189C362O11186C366O11216C368O11221C373O11244C379O11278C386O11284C391O11278C392O11481C393O11493C397O11566C398O11578C402O11640C405O11663C412O11663C418O11653C422O11752C423O11766C427O11774C430O11774C434O11901C435O11916C440O11921,, -code-creation,JS,10,73959,0x11395653343e,22,get node:internal/streams/writable:119:8,0x32e0259d9078,~ -code-source-info,0x11395653343e,103,3822,3863,C0O3827C4O3840C6O3839C12O3848C17O3855C21O3861,, -code-creation,JS,10,73959,0x113956533716,67,resetBuffer node:internal/streams/writable:357:21,0x32e0259d2c68,~ -code-source-info,0x113956533716,103,11944,12088,C0O11956C2O11962C6O11978C10O11988C11O12008C15O12015C17O12021C26O12032C31O12046C33O12044C39O12029C43O12058C45O12064C54O12076C56O12075C61O12072C66O12087,, -code-creation,JS,10,74000,0x113956533a06,50,set node:internal/streams/readable:124:8,0x32e0259ccd58,~ -code-source-info,0x113956533a06,96,3864,3950,C0O3880C4O3891C8O3896C17O3907C20O3904C26O3923C30O3928C39O3939C44O3936C49O3949,, -code-creation,JS,10,74042,0x113956533b66,131,createHandle node:net:165:22,0x116d9d71aa38,~ -code-source-info,0x113956533b66,86,4563,4925,C0O4583C13O4583C18O4626C23O4626C28O4649C30O4658C35O4676C42O4699C46O4711C49O4725C57O4734C60O4748C67O4683C72O4762C73O4770C75O4779C80O4796C87O4818C91O4830C94O4843C102O4852C105O4865C112O4803C117O4879C118O4887C125O4893C130O4887,, -code-creation,JS,10,74042,0x113956533d7e,155, node:internal/validators:114:3,0x1746951fefd8,~ -code-source-info,0x113956533d7e,15,2811,3274,C36O2952C42O2991C58O2997C63O2991C64O3056C69O3061C75O3093C91O3099C96O3093C97O3158C99O3168C106O3183C111O3198C121O3237C134O3250C147O3204C152O3198C154O3273,, -code-creation,JS,10,74084,0x113956533f1e,21,guessHandleType node:internal/util:826:25,0x3f9e7a244220,~ -code-source-info,0x113956533f1e,16,22819,22892,C0O22841C5O22841C10O22865C17O22883C20O22890,, -code-creation,JS,10,74167,0x11395653400e,14,set node:net:2301:6,0x116d9d71d108,~ -code-source-info,0x11395653400e,86,63595,63628,C0O63601C2O63613C7O63622C13O63626,, -code-creation,JS,10,74167,0x1139565340f6,8,get node:net:2300:6,0x116d9d71d0b8,~ -code-source-info,0x1139565340f6,86,63560,63588,C0O63565C2O63577C4O63576C7O63586,, -code-creation,JS,10,74250,0x11395653435e,195,Readable.on node:internal/streams/readable:1103:33,0x116d9d73e2f0,~ -code-source-info,0x11395653435e,96,34992,35891,C0O35017C5O35024C10O35034C15O35037C29O35037C35O35078C40O35097C42O35104C47O35286C55O35286C62O35312C65O35279C69O35405C79O35435C84O35435C90O35454C92O35461C97O35494C103O35515C109O35542C111O35587C117O35566C121O35601C122O35615C126O35630C127O35652C131O35667C139O35694C144O35708C149O35667C154O35734C160O35752C163O35752C169O35796C175O35815C178O35823C186O35823C192O35878C194O35889,, -code-creation,JS,10,74292,0x1139565345d6,135,initSocketHandle node:net:309:26,0x116d9d71ad58,~ -code-source-info,0x1139565345d6,86,7887,8465,C0O7903C5O7903C9O7919C10O7934C14O8020C20O8040C27O8048C32O8062C36O8079C43O8096C45O8094C49O8114C51O8119C57O8157C62O8138C66O8136C70O8186C72O8191C74O8190C78O8205C80O8241C82O8246C84O8245C88O8265C90O8306C94O8324C99O8329C105O8362C106O8369C107O8378C109O8383C114O8392C118O8422C123O8430C128O8430C134O8464,, -code-creation,JS,10,74334,0x11395653480e,155,undestroy node:internal/streams/destroy:154:19,0x116d9d737eb8,~ -code-source-info,0x11395653480e,94,2820,3492,C0O2842C5O2875C10O2894C14O2907C15O2921C19O2933C20O2942C24O2955C25O2970C29O2983C30O2995C34O3008C35O3018C39O3030C40O3045C44O3058C45O3068C49O3093C57O3089C61O3134C69O3130C73O3161C77O3174C78O3188C82O3200C83O3212C87O3225C88O3234C92O3247C93O3262C97O3275C98O3285C102O3297C103O3312C107O3325C108O3339C112O3352C113O3366C117O3391C125O3387C129O3428C137O3424C141O3467C149O3463C154O3491,, -code-creation,JS,10,74375,0x113956534a06,61,set node:internal/streams/readable:177:8,0x116d9d73d9b0,~ -code-source-info,0x113956534a06,96,6229,6392,C0O6245C4O6266C6O6271C11O6286C15O6303C17O6308C26O6319C31O6316C37O6352C39O6357C48O6369C50O6368C55O6365C60O6391,, -code-creation,JS,10,74375,0x113956534b3e,50,set node:internal/streams/writable:120:8,0x32e0259d90c8,~ -code-source-info,0x113956534b3e,103,3872,3958,C0O3888C4O3899C8O3904C17O3915C20O3912C26O3931C30O3936C39O3947C44O3944C49O3957,, -code-creation,JS,10,74417,0x113956534c5e,61,set node:internal/streams/writable:205:8,0x32e0259d3258,~ -code-source-info,0x113956534c5e,103,7017,7180,C0O7033C4O7054C6O7059C11O7074C15O7091C17O7096C26O7107C31O7104C37O7140C39O7145C48O7157C50O7156C55O7153C60O7179,, -code-creation,JS,10,74417,0x113956534da6,47,get node:internal/streams/writable:218:8,0x32e0259d32a8,~ -code-source-info,0x113956534da6,103,7253,7350,C0O7258C2O7271C4O7270C10O7281C12O7279C17O7295C24O7309C26O7308C32O7319C34O7317C39O7330C46O7348,, -code-creation,JS,10,74459,0x11395653512e,32,getNewAsyncId node:net:184:23,0x116d9d71aa88,~ -code-source-info,0x11395653512e,86,4950,5066,C0O4963C4O4996C14O5029C17O5029C22O5051C27O5051C31O5064,, -code-creation,JS,10,74500,0x1139565353de,5,get node:internal/bootstrap/node:371:8,0x1746951fbfb8,~ -code-source-info,0x1139565353de,12,12775,12808,C0O12786C4O12802,, -code-creation,JS,10,74500,0x11395653558e,5,get /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/redir-stdout.js:19:10,0x11395651ae40,~ -code-source-info,0x11395653558e,123,392,404,C0O398C4O404,, -tick,0x101420124,74542,0,0x0,0,0x1139565345e4,0x11395652ed86,0x11395651b0f7,0x9d6055fbbad,0x9d6055f632c,0x9d6055f564e,0x9d6055decd3,0x9d6055de762,0x9d6055dd3b9,0x9d6055dd15d,0x9d6055d3b00,0x1fdc8707b9f5,0x1fdc87079ce6,0x1fdc87079684 -code-creation,JS,11,74667,0x10678cee0,7888,realpathSync node:fs:2611:22,0x3f9e7a26d4b0,^ -code-source-info,0x10678cee0,55,68813,72563,,, -code-creation,JS,11,74709,0x10678edc0,1336,deprecate node:internal/util:156:19,0x3f9e7a2421c8,^ -code-source-info,0x10678edc0,16,4112,5092,,, -code-creation,JS,11,74750,0x10678f320,376,getOwn node:internal/bootstrap/realm:202:16,0x1746951f6648,^ -code-source-info,0x10678f320,9,6377,6531,,, -code-creation,JS,11,74750,0x10678f4c0,840,syncExports node:internal/bootstrap/realm:365:14,0x1746951f6c10,^ -code-source-info,0x10678f4c0,9,11891,12224,,, -code-creation,JS,11,74750,0x10678f820,392,SafeWeakMap node:internal/per_context/primordials:419:16,0x1746951f4a78,^ -code-source-info,0x10678f820,6,12147,12164,,, -code-creation,JS,11,74792,0x10678f9c0,64,noop node:internal/util/debuglog:46:14,0x3f9e7a24a618,^ -code-source-info,0x10678f9c0,22,1404,1412,,, -code-creation,JS,11,74792,0x10678fa20,200,canBeRequiredWithoutScheme node:internal/bootstrap/realm:288:36,0x1746951f69b8,^ -code-source-info,0x10678fa20,9,9152,9220,,, -code-creation,JS,11,74792,0x10678fb00,232,readPackage node:internal/modules/package_json_reader:140:21,0x3f9e7a278080,^ -code-source-info,0x10678fb00,65,3950,4020,,, -code-creation,Eval,10,74917,0x1139565363ae,5, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1,0x113956536268,~ -script-source,131,/Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js,'use strict'\n\nprocess.on('SIGINT'\x2C process.exit)\nprocess.on('SIGTERM'\x2C process.exit)\n -code-source-info,0x1139565363ae,131,0,85,C0O0C4O85,, -code-creation,JS,10,74959,0x11395653644e,56, /Users/aditi.khare/.local/share/nvm/v20.10.0/lib/node_modules/0x/lib/preload/soft-exit.js:1:1,0x113956536328,~ -code-source-info,0x11395653644e,131,0,85,C0O14C4O22C12O35C16O43C21O22C27O49C31O57C39O71C43O79C48O57C55O84,, -code-creation,JS,10,75042,0x113956536e76,50,initializeFrozenIntrinsics node:internal/process/pre_execution:714:36,0x3f9e7a279a28,~ -code-source-info,0x113956536e76,67,22147,22369,C0O22154C8O22158C14O22203C17O22211C28O22211C34O22323C40O22323C45O22360C49O22368,, -code-creation,JS,10,75042,0x113956536f96,22,markBootstrapComplete node:internal/process/pre_execution:735:31,0x3f9e7a279ac8,~ -code-source-info,0x113956536f96,67,22751,22815,C0O22758C6O22758C11O22788C16O22789C21O22814,, -code-creation,JS,10,75125,0x1139565370de,94,executeUserEntryPoint node:internal/modules/run_main:127:31,0x3f9e7a27b1d0,~ -code-source-info,0x1139565370de,70,4520,4888,C7O4536C14O4540C22O4570C25O4570C30O4616C33O4616C38O4652C40O4676C45O4687C50O4676C56O4807C62O4807C67O4796C72O4858C87O4858C93O4887,, -code-creation,JS,10,75375,0x11395653782e,248,resolveMainPath node:internal/modules/run_main:15:25,0x3f9e7a27afa8,~ -code-source-info,0x11395653782e,70,344,1479,C0O375C8O375C13O452C15O464C17O480C22O500C30O504C36O550C37O557C38O564C43O580C48O580C56O765C62O765C67O754C72O827C79O837C82O842C87O842C100O827C106O876C110O893C111O900C112O935C120O935C125O981C127O1037C133O1037C138O1022C146O1101C154O1099C164O1149C166O1165C176O1184C186O1191C191O1258C199O1258C204O1223C209O1329C217O1329C222O1315C227O1363C230O1409C237O1363C242O1437C244O1437C245O1461C247O1477,, -code-creation,JS,10,75500,0x113956537cd6,325,tryPackage node:internal/modules/cjs/loader:429:20,0x3f9e7a276690,~ -code-source-info,0x113956537cd6,63,12095,13355,C0O12153C5O12153C10O12178C15O12188C17O12204C22O12225C25O12230C33O12230C46O12211C51O12275C52O12300C57O12305C62O12305C69O12347C72O12347C91O12380C103O12439C106O12444C114O12444C127O12425C133O12489C138O12517C143O12540C146O12545C154O12545C167O12526C173O12595C175O12683C185O12725C198O12739C204O12683C210O12828C212O12837C216O12865C218O12876C221O12881C229O12881C235O12874C239O12925C241O12941C245O13018C247O13018C248O13065C253O13070C261O13070C268O13114C271O13122C281O13171C294O13188C307O13197C317O13122C322O13339C324O13353,, -code-creation,JS,10,75584,0x11395653813e,75,reportModuleNotFoundToWatchMode node:internal/modules/cjs/loader:239:41,0x3f9e7a276190,~ -code-source-info,0x11395653813e,63,6858,7057,C0O6858C9O6885C16O6889C26O6930C32O6942C37O6950C51O6974C54O6992C59O6974C68O6950C74O7056,, -code-creation,JS,10,75625,0x1139565383d6,199,shouldUseESMLoader node:internal/modules/run_main:52:28,0x3f9e7a27b0e0,~ -code-source-info,0x1139565383d6,70,1667,3093,C0O1682C8O1686C15O1732C20O1748C21O1760C22O1936C30O1936C35O2152C43O2152C48O2198C54O2205C59O2224C65O2231C70O2238C71O2250C72O2309C78O2325C84O2325C91O2370C92O2382C93O2387C99O2404C105O2404C112O2449C113O2462C114O2497C120O2497C125O2476C130O2560C135O2670C142O2674C166O2709C167O2721C168O2749C169O2762C170O2823C178O2827C184O3004C191O3011C196O3053C197O3068C198O3081,, -tick,0x1012fafc0,75750,0,0x0,0,0x0,0x9d6055e054a,0x9d6055debdc,0x113956537135,0x1fdc870796cf -code-creation,JS,10,75792,0x113956538966,249, node:internal/process/execution:169:10,0x3f9e7a25a5f8,~ -code-source-info,0x113956538966,33,5799,7350,C0O5963C5O5963C8O6011C19O6073C22O6081C36O6081C41O6129C46O6155C52O6183C57O6205C62O6205C69O6231C72O6244C86O6244C96O6452C99O6465C105O6487C109O6504C113O6522C118O6541C120O6539C124O6570C127O6578C137O6591C140O6578C152O6705C153O6718C154O6862C160O6862C165O6879C173O6880C178O6976C183O6980C188O7036C193O7036C197O7064C198O7076C203O7093C210O7093C216O7136C221O7136C225O7171C230O7171C235O7007C239O7308C244O7308C247O7334C248O7346,, -code-creation,JS,10,76125,0x113956539336,18,clearDefaultTriggerAsyncId node:internal/async_hooks:442:36,0x1746951fe408,~ -code-source-info,0x113956539336,14,15322,15376,C0O15329C7O15345C12O15369C17O15375,, -code-creation,JS,10,76792,0x11395653a7d6,21,get node:internal/bootstrap/node:100:8,0x1746951fb9b0,~ -code-source-info,0x11395653a7d6,12,3833,3880,C0O3844C9O3858C11O3857C17O3868C20O3874,, -code-creation,JS,10,76834,0x11395653a906,151, node:internal/validators:93:3,0x1746951fef88,~ -code-source-info,0x11395653a906,15,2186,2567,C12O2206C25O2236C32O2269C38O2306C54O2312C59O2306C60O2365C65O2370C71O2400C87O2406C92O2400C93O2459C95O2469C102O2484C107O2497C117O2536C130O2549C143O2503C148O2497C150O2566,, -code-creation,JS,10,76959,0x11395653ab0e,46,beforeInspector node:internal/errors:833:18,0x1746951fa520,~ -code-source-info,0x11395653ab0e,10,24705,25081,C0O24719C2O24736C4O24735C11O24803C15O24809C19O24915C21O24935C23O24934C27O24964C31O24927C41O25071C45O25077,, -tick,0x100c25204,79375,0,0x0,3 -tick,0x100e94494,79375,0,0x0,3 -code-creation,JS,10,79375,0x11395653e826,344,prepareStackTrace node:internal/errors:91:27,0x1746951f7630,~ -code-source-info,0x11395653e826,10,2161,3649,C0O2303C5O2326C10O2326C17O2354C22O2373C27O2373C33O2389C38O2408C43O2414C48O2434C53O2450C54O2477C55O2482C61O2485C66O2487C74O2508C78O2526C83O2564C86O2526C93O2610C97O2617C101O2624C102O2624C107O2654C109O2659C115O2662C120O2664C128O2689C132O2699C137O2729C140O2699C147O2760C156O2793C163O2760C168O2807C170O2631C175O2591C179O2992C186O3001C188O2999C193O3028C200O3056C203O3028C208O3112C222O3112C228O3172C230O3195C232O3191C237O3208C239O3230C240O3338C242O3353C249O3370C254O3409C266O3424C281O3440C292O3466C297O3480C302O3527C308O3534C313O3547C315O3566C316O3573C328O3606C334O3606C343O3647,, -code-creation,JS,10,79459,0x11395653eb1e,70,maybeOverridePrepareStackTrace node:internal/errors:136:40,0x1746951f8198,~ -code-source-info,0x11395653eb1e,10,3691,4398,C0O3919C7O3924C18O3984C23O3990C28O3990C34O4022C35O4245C40O4273C48O4313C53O4337C58O4337C64O4369C65O4377C69O4396,, -tick,0x1010bee08,79500,0,0x0,2 -code-creation,JS,10,79500,0x11395653eef6,207,afterInspector node:internal/errors:847:17,0x1746951fa570,~ -code-source-info,0x11395653eef6,10,25099,26368,C0O25141C5O25168C7O25650C13O25686C19O25686C24O25707C29O25708C34O25746C41O25764C46O25789C53O25764C61O25836C64O25746C70O25851C71O25858C77O25862C84O25875C92O25879C97O25898C99O26037C102O26037C106O25949C111O25987C116O26005C121O26083C128O26097C132O26113C140O26137C145O26114C158O26195C165O26212C171O26265C174O26281C179O26296C187O26265C196O26187C201O26316C204O26337C206O26358,, -code-creation,JS,10,79542,0x11395653f11e,32,lazyInternalUtilInspect node:internal/errors:191:33,0x1746951f82d8,~ -code-source-info,0x11395653f11e,10,5499,5595,C0O5506C14O5530C21O5526C27O5566C31O5593,, -code-creation,JS,10,79584,0x11395653f246,32,lazyUtilColors node:internal/errors:197:24,0x1746951f8328,~ -code-source-info,0x11395653f246,10,5636,5713,C0O5643C14O5658C21O5654C27O5693C31O5711,, -code-creation,Eval,10,79625,0x11395653f586,5, node:internal/util/colors:1:1,0x11395653f3f0,~ -code-source-info,0x11395653f586,132,0,1122,C0O0C4O1122,, -code-creation,JS,10,79667,0x11395653f7d6,78, node:internal/util/colors:1:1,0x11395653f500,~ -code-source-info,0x11395653f7d6,132,0,1122,C0O0C26O19C27O19C29O129C37O244C45O508C55O144C59O1096C62O1103C67O1111C72O1111C77O1121,, -new,MemoryChunk,0x2de0c9480000,262144 -code-creation,JS,10,79750,0x11395653febe,211,refresh node:internal/util/colors:25:10,0x11395653f658,~ -code-source-info,0x11395653febe,132,515,1090,C0O524C3O536C8O543C14O576C17O583C22O591C30O614C35O591C41O629C44O636C51O651C59O649C63O688C66O695C73O711C81O709C85O748C88O755C95O771C103O769C107O808C110O815C117O832C125O830C129O869C132O876C139O890C147O888C151O927C154O934C161O949C169O947C173O986C176O993C183O1009C191O1007C195O1043C198O1050C205O1068C210O1089,, -code-creation,JS,10,79792,0x2de0c94813ee,125,getStderr node:internal/bootstrap/switches/is_main_thread:170:19,0x3f9e7a268778,~ -code-source-info,0x2de0c94813ee,52,4444,5117,C0O4451C6O4463C10O4477C11O4480C17O4489C24O4487C30O4521C37O4542C40O4549C44O4540C48O4560C53O4583C60O4574C66O4659C73O4675C77O4693C82O4704C88O4717C91O4725C102O4725C108O4772C116O4772C120O5101C124O5115,, -code-creation,JS,10,80167,0x2de0c948224e,280,createWritableStdioStream node:internal/bootstrap/switches/is_main_thread:47:35,0x3f9e7a268540,~ -code-source-info,0x2de0c948224e,52,1458,3026,C0O1471C2O1541C7O1549C42O1608C48O1608C53O1647C60O1639C66O1670C68O1683C72O1698C74O1761C80O1761C85O1838C95O1818C101O1871C103O1884C107O1898C109O1965C115O1965C120O2197C123O2209C132O2228C137O2236C144O2239C149O2284C155O2284C160O2265C165O2344C180O2378C189O2336C197O2501C209O2520C215O2493C221O2604C223O2617C227O2633C229O2784C235O2784C240O2771C245O2809C250O2841C260O2818C266O2964C268O2974C272O2983C273O2999C277O3010C279O3024,, -code-creation,Eval,10,80250,0x2de0c9482936,5, node:tty:1:1,0x2de0c9482730,~ -code-source-info,0x2de0c9482936,133,0,5058,C0O0C4O5058,, -code-creation,JS,10,80459,0x2de0c948300e,426, node:tty:1:1,0x2de0c94828b0,~ -code-source-info,0x2de0c948300e,133,0,5058,C0O0C53O1159C59O1168C65O1187C70O1239C76O1239C80O1239C82O1278C85O1278C90O1263C96O1268C102O1322C108O1322C112O1322C114O1398C117O1405C122O1358C128O1374C134O1454C140O1454C145O1422C150O1439C155O1524C156O1524C158O2114C161O2146C169O2161C174O2168C179O2114C184O2180C190O2217C195O2180C200O2227C203O2238C212O2259C216O3455C219O3488C227O3503C232O3510C237O3455C242O3522C248O3560C253O3522C258O3570C261O3582C267O3598C271O3607C274O3619C281O3643C285O3661C288O3673C295O3693C299O3707C302O3719C311O3742C315O4203C318O4215C327O4234C331O4378C334O4390C343O4411C347O4561C350O4573C359O4593C363O4736C366O4748C375O4774C379O4913C382O4925C391O4949C395O5004C402O5023C408O5031C414O5043C420O5019C425O5057,, -code-creation,Eval,10,80584,0x2de0c9484076,5, node:internal/tty:1:1,0x2de0c9483e20,~ -code-source-info,0x2de0c9484076,134,0,6485,C0O0C4O6485,, -code-creation,JS,10,80834,0x2de0c94844d6,366, node:internal/tty:1:1,0x2de0c9483ff0,~ -code-source-info,0x2de0c94844d6,134,0,6485,C0O0C69O1186C75O1208C81O1231C87O1255C93O1329C99O1329C104O1309C110O1366C111O1366C113O1395C115O1395C117O1416C119O1416C121O1438C123O1438C125O1460C127O1460C129O1877C136O1890C142O1913C148O1937C154O1960C160O1983C166O2005C172O2026C178O2050C184O2074C190O2096C196O2119C202O2140C208O2163C214O2182C220O2287C226O2379C232O1877C234O2421C336O2421C338O2542C339O2542C341O6433C348O6454C354O6471C360O6448C365O6484,, -tick,0x19579ebd4,80834,1,0x100a09554,3,0x0,0x1067893e4,0x106789114,0x2de0c948309a,0x1067894b0,0x106789114,0x2de0c948227e,0x2de0c94813ff,0x11395653fec1,0x11395653f81e,0x1067894b0,0x106789114,0x11395653f254,0x11395653ef76 -code-creation,JS,10,80917,0x2de0c9485a4e,192,WriteStream node:tty:84:21,0x2de0c9482a08,~ -code-source-info,0x2de0c9485a4e,133,2501,3453,C0O2510C2O2521C7O2550C12O2557C17O2577C18O2580C20O2587C26O2592C32O2605C37O2614C44O2620C49O2614C50O2659C52O2677C65O2677C71O2705C77O2731C84O2737C89O2731C90O2774C95O2778C100O2785C112O2840C116O2785C122O3264C127O3272C134O3272C139O3310C149O3310C155O3343C160O3351C165O3351C171O3377C173O3393C174O3415C177O3406C181O3424C183O3443C186O3434C191O3452,, -tick,0x1957a9d58,82000,1,0x100b009d8,6,0x0,0x2de0c9485a8f,0x2de0c948228a,0x2de0c94813ff,0x11395653fec1,0x11395653f81e,0x1067894b0,0x106789114,0x11395653f254,0x11395653ef76 -code-creation,JS,10,82209,0x2de0c9487386,21,addCleanup node:internal/bootstrap/switches/is_main_thread:142:20,0x3f9e7a2686b0,~ -code-source-info,0x2de0c9487386,52,3658,3730,C0O3667C5O3671C10O3699C15O3699C20O3729,, -code-creation,JS,10,82250,0x2de0c94874ae,80,shouldColorize node:internal/util/colors:17:17,0x11395653f608,~ -code-source-info,0x2de0c94874ae,132,258,504,C0O273C3O285C8O289C14O324C17O331C21O348C26O349C33O365C36O369C37O380C44O393C53O426C61O472C66O472C73O488C79O500,, -code-creation,JS,10,82334,0x2de0c9487b8e,765,getColorDepth node:internal/tty:106:23,0x2de0c94840f8,~ -code-creation,JS,10,82459,0x2de0c9488996,5,get node:internal/util/inspect:370:6,0x3f9e7a248bd8,~ -code-source-info,0x2de0c9488996,21,11149,11191,C0O11158C4O11187,, -tick,0x1009999c4,85334,0,0x0,3,0x0,0x11395653efa4 -tick,0x1957d960c,85334,0,0x0,3,0x0,0x11395653efa4 -code-creation,JS,10,85334,0x2de0c948d8ee,396,inspect node:internal/util/inspect:309:17,0x3f9e7a248b88,~ -code-source-info,0x2de0c948d8ee,21,9025,11035,C0O9025C2O9076C9O9165C15O9197C18O9219C28O9242C31O9264C41O9283C44O9305C54O9332C57O9354C67O9384C70O9406C80O9437C83O9459C93O9496C96O9518C106O9552C109O9574C119O9600C122O9622C132O9643C135O9665C145O9686C148O9708C158O9739C161O9761C172O9800C179O9807C184O9849C191O9856C196O9869C198O9882C203O9911C205O9932C208O9921C212O9965C219O9972C226O9988C231O10017C233O10039C236O10028C240O10096C246O10135C248O10150C254O10169C258O10203C263O10203C268O10240C270O10255C274O10245C279O10290C281O10297C285O10491C292O10536C295O10506C304O10581C309O10608C311O10623C314O10617C320O10653C326O10761C328O10777C332O10265C337O10227C341O10823C347O10831C349O10843C353O10873C359O10919C362O10917C366O10939C372O10987C375O10985C379O10999C390O11006C395O11033,, -code-creation,JS,10,85459,0x2de0c948e35e,491,formatValue node:internal/util/inspect:765:21,0x3f9e7a249188,~ -code-source-info,0x2de0c948e35e,21,23100,25837,C0O23188C14O23265C17O23265C23O23300C26O23327C37O23307C42O23348C43O23355C47O23392C58O23392C64O23416C65O23500C68O23628C73O23657C80O23628C86O23671C88O23702C93O23729C98O23762C109O23762C115O23800C116O23819C122O23838C134O23845C139O23883C140O23894C145O24049C151O24090C153O24096C155O24095C159O24122C165O24255C170O24361C176O24382C181O24394C188O24404C193O24550C202O24578C209O24584C213O24637C216O24643C221O24681C223O24670C228O24708C236O24792C254O24708C260O24962C262O24970C267O24993C273O25034C285O25041C290O25077C291O25096C304O25145C310O25176C315O25145C328O25103C333O25195C334O25381C339O25386C344O25386C351O25421C354O25436C360O25468C362O25487C365O25483C370O25481C374O25508C379O25517C384O25517C392O25567C397O25576C402O25576C408O25594C410O25641C415O25650C419O25655C423O25672C428O25681C433O25681C439O25729C449O25751C463O25729C469O25772C470O25780C485O25787C490O25835,, -code-creation,JS,10,85709,0x2de0c948ee7e,3301,formatRaw node:internal/util/inspect:843:19,0x3f9e7a2491d8,~ -tick,0x195742964,85917,0,0x0,3,0x0,0x2de0c948e543,0x2de0c948da74,0x11395653efba -code-creation,JS,10,85959,0x2de0c949020e,322,getConstructorName node:internal/util/inspect:587:28,0x3f9e7a248fa8,~ -code-source-info,0x2de0c949020e,21,17502,18744,C0O17547C2O17573C7O17591C13O17594C16O17594C22O17646C30O17646C36O17702C38O17760C46O17803C51O17809C58O17814C66O17861C71O17832C78O17877C84O17930C91O17951C94O17966C99O17981C104O17987C109O17966C116O18005C127O18049C138O18005C143O18109C148O18134C153O18140C158O18116C162O18146C163O18158C168O18164C174O18195C178O18233C183O17580C187O18264C191O18295C192O18307C193O18327C198O18327C203O18386C207O18380C212O18399C218O18421C227O18457C228O18485C233O18539C246O18485C252O18560C254O18592C267O18641C273O18667C279O18687C283O18610C298O18701C299O18709C311O18727C321O18742,, -code-creation,JS,10,86042,0x2de0c94904de,13,isInstanceof node:internal/util/inspect:579:22,0x3f9e7a248f58,~ -code-source-info,0x2de0c94904de,21,17376,17473,C3O17406C5O17420C8O17437C11O17454C12O17467,, -code-creation,JS,10,86125,0x2de0c94906e6,223,getKeys node:internal/util/inspect:708:17,0x3f9e7a249098,~ -code-source-info,0x2de0c94906e6,21,21206,22181,C0O21206C9O21234C11O21258C21O21258C26O21296C30O21318C40O21325C45O21375C51O21382C56O21395C63O21395C73O21755C83O21762C91O21760C101O21807C112O21814C118O21814C127O21840C134O21845C143O21882C151O21882C156O21807C160O21921C172O21928C179O21984C185O21991C190O22021C195O22085C206O22115C209O22115C215O22085C220O22167C222O22179,, -code-creation,JS,10,86167,0x2de0c949097e,19,isError node:internal/util:98:17,0x3f9e7a241ce0,~ -code-source-info,0x2de0c949097e,16,2305,2539,C0O2491C5O2498C13O2531C15O2520C18O2537,, -code-creation,JS,10,86250,0x2de0c9490cc6,757,formatError node:internal/util/inspect:1367:21,0x3f9e7a2495e8,~ -code-source-info,0x2de0c9490cc6,21,44775,47150,C0O44831C9O44846C12O44857C18O44846C27O44888C30O44888C35O44912C50O44912C55O44964C60O44976C65O44998C71O45005C78O45015C85O45015C92O45061C101O45061C106O45152C111O45173C117O45156C123O45196C129O45203C136O45213C143O45213C150O45260C159O45260C164O45303C179O45311C185O45436C193O45447C196O45481C202O45447C212O45500C214O45508C219O45531C225O45539C236O45631C251O45631C257O45681C259O45696C264O45710C269O45722C282O45762C296O45762C302O45833C309O45872C314O45833C320O45896C332O45896C338O45950C344O46042C347O46042C351O46066C353O46110C373O46102C404O46102C407O46140C415O46160C419O46140C425O46193C429O46214C433O46228C441O46239C446O46228C453O46257C457O46278C467O46278C486O46335C495O46364C499O46371C505O46409C509O46473C522O46473C528O46523C530O46535C535O46561C545O46585C550O46636C563O46646C569O46713C574O46752C576O46764C583O46093C657O46807C663O46824C671O46824C687O46869C692O46961C698O46976C703O47009C712O47040C718O47009C724O47061C739O47113C748O47069C754O47135C756O47148,, -code-creation,JS,10,86292,0x2de0c94911c6,32,getStackString node:internal/util/inspect:1239:24,0x3f9e7a2493b8,~ -code-source-info,0x2de0c94911c6,21,40538,40625,C0O40563C8O40571C11O40584C16O40571C24O40593C27O40593C31O40623,, -code-creation,JS,10,86334,0x2de0c949137e,191,removeDuplicateErrorKeys node:internal/util/inspect:1303:34,0x3f9e7a2494a8,~ -code-source-info,0x2de0c949137e,21,42760,43150,C0O42797C6O42816C12O42823C17O42855C39O42847C67O42847C70O42907C75O42907C81O43020C83O43030C90O43040C95O43074C99O43040C106O43093C120O43093C125O42836C190O43149,, -code-creation,JS,10,86375,0x2de0c9491626,283,improveStack node:internal/util/inspect:1270:22,0x3f9e7a249458,~ -code-source-info,0x2de0c9491626,21,41541,42725,C0O41729C5O41740C11O41775C17O41775C26O41823C29O41823C36O41878C43O41885C50O41901C56O41907C63O41923C69O41929C74O41962C77O41975C81O42023C92O42023C101O42105C110O42105C116O42166C120O42192C128O42225C133O42239C140O42296C157O42317C168O42296C174O42368C176O42377C181O42397C186O42401C193O42450C194O42458C199O42477C211O42499C219O42535C225O42555C228O42555C241O42624C253O42646C266O42654C269O42654C280O42710C282O42723,, -code-creation,JS,10,86417,0x2de0c9491926,158,getPrefix node:internal/util/inspect:693:19,0x3f9e7a249048,~ -code-source-info,0x2de0c9491926,21,20784,21153,C20O20828C24O20860C26O20868C33O20887C38O20904C43O20915C50O20926C63O20952C73O20960C74O20971C79O20982C86O20993C96O21018C97O21026C99O21034C106O21056C111O21071C117O21095C130O21104C140O21112C141O21119C147O21143C157O21151,, -code-creation,JS,10,86459,0x2de0c9491c2e,194,getStackFrames node:internal/util/inspect:1243:24,0x3f9e7a249408,~ -code-source-info,0x2de0c9491c2e,21,40650,41518,C0O40687C8O40687C14O40729C19O40751C30O40895C37O40916C40O40916C46O40957C49O40957C54O41008C62O41008C68O41060C70O41080C75O41116C82O41137C87O41186C91O41137C100O41116C106O41229C109O41229C115O41213C120O41218C125O41280C126O41288C131O41319C133O41323C137O41348C142O41359C153O41422C160O41436C164O41454C173O41454C186O41422C191O41502C193O41516,, -code-creation,JS,10,86500,0x2de0c9491e3e,27,safeGetCWD node:internal/util/inspect:1357:20,0x3f9e7a249598,~ -code-source-info,0x2de0c9491e3e,21,44622,44753,C0O44633C5O44663C8O44690C13O44690C21O44680C22O44713C23O44720C24O44727C26O44751,, -code-creation,JS,10,86584,0x2de0c9491f4e,21,exists node:internal/bootstrap/realm:280:16,0x1746951f6918,~ -code-source-info,0x2de0c9491f4e,9,8981,9029,C0O8992C5O9013C10O9017C15O9017C20O9025,, -code-creation,JS,10,86584,0x2de0c94920a6,82,stylizeWithColor node:internal/util/inspect:560:26,0x3f9e7a248e68,~ -code-source-info,0x2de0c94920a6,21,16938,17179,C0O16973C3O16981C10O16987C14O17002C16O17047C19O17055C26O17061C30O17074C32O17105C36O17127C52O17134C65O17152C78O17159C79O17166C81O17177,, -code-creation,JS,10,86625,0x2de0c94921d6,6,get node:internal/util/inspect:436:8,0x3f9e7a248c78,~ -code-source-info,0x2de0c94921d6,21,13153,13190,C0O13164C2O13175C5O13184,, -code-creation,RegExp,3,86667,0x10678fc00,2328,^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$ -code-creation,JS,10,86709,0x2de0c9492316,3,getEmptyFormatArray node:internal/util/inspect:575:29,0x3f9e7a248f08,~ -code-source-info,0x2de0c9492316,21,17334,17353,C0O17341C2O17351,, -code-creation,JS,10,86792,0x2de0c949271e,993,formatProperty node:internal/util/inspect:1936:24,0x3f9e7a249d18,~ -code-creation,JS,10,86875,0x2de0c9492d06,11,isUndetectableObject node:internal/util/inspect:176:30,0x3f9e7a248ae8,~ -code-source-info,0x2de0c9492d06,21,3640,3690,C0O3672C9O3677C10O3690,, -code-creation,JS,10,86917,0x2de0c9492fbe,392,formatPrimitive node:internal/util/inspect:1620:25,0x3f9e7a249868,~ -code-source-info,0x2de0c9492fbe,21,53716,55097,C0O53716C9O53737C15O53788C18O53806C23O53819C27O53813C32O53868C37O53881C41O53875C45O53904C54O53947C62O53912C69O53971C74O53988C87O54025C103O54061C113O54261C122O54270C124O54268C129O54302C134O54315C139O54333C143O54327C146O54348C149O54309C154O54361C165O54396C172O54425C181O54425C192O54396C205O54548C211O54579C215O54594C219O54548C229O54368C237O54610C240O54620C241O54631C249O54641C257O54638C265O54669C268O54679C269O54686C275O54721C283O54756C291O54728C296O54774C297O54777C303O54812C311O54847C319O54819C324O54865C325O54868C331O54904C336O54917C341O54911C346O54937C347O54940C353O54978C362O54985C367O55014C368O55043C375O55053C378O55053C386O55050C391O55095,, -code-creation,JS,10,86959,0x2de0c9493456,514,strEscape node:internal/util/inspect:495:19,0x3f9e7a248e18,~ -code-source-info,0x2de0c9493456,21,14775,16911,C0O14802C5O14850C10O14898C13O15157C21O15161C28O15292C36O15297C43O15340C48O15369C56O15374C65O15427C71O15427C78O15471C81O15499C83O15515C88O15531C93O15582C98O15729C107O15736C114O15746C117O15746C124O15797C127O15804C132O15832C133O15843C140O15850C145O15863C159O15869C166O15933C169O15940C174O15968C175O15989C178O16006C180O16024C182O16035C186O16029C191O16068C196O16068C202O16107C204O16117C211O16150C218O16174C225O16197C234O16212C239O16228C241O16237C246O16254C248O16264C253O16268C265O16300C267O16313C279O16313C288O16350C293O16354C307O16379C309O16388C315O16404C321O16414C332O16433C337O16452C343O16462C350O16477C354O16487C358O16481C363O16519C370O16552C374O16519C380O16566C386O16576C397O16595C402O16618C407O16633C409O16667C411O16680C423O16680C438O16720C444O16720C460O16764C462O16773C466O16044C471O16011C479O16808C483O16800C488O16822C490O16832C493O16832C505O16871C508O16878C513O16909,, -code-creation,JS,10,87042,0x2de0c949385e,62,addQuotes node:internal/util/inspect:478:19,0x3f9e7a248d78,~ -code-source-info,0x2de0c949385e,21,14328,14468,C0O14346C2O14357C7O14371C12O14382C22O14389C23O14396C25O14407C30O14421C35O14433C45O14441C46O14448C51O14459C61O14466,, -tick,0x1957a20c4,87084,0,0x0,3,0x0,0x2de0c94934d5,0x2de0c94930b7,0x2de0c948e383,0x2de0c94927a6,0x2de0c948f88a,0x2de0c948e543,0x2de0c948da74,0x11395653efba -code-creation,RegExp,3,87167,0x106790540,1112,^[a-zA-Z_][a-zA-Z_0-9]*$ -code-creation,JS,10,87250,0x2de0c9493b0e,592,reduceToSingleString node:internal/util/inspect:2032:30,0x3f9e7a249db8,~ -code-source-info,0x2de0c9493b0e,21,67959,70831,C0O68035C10O68074C18O68102C25O68110C30O68281C35O68396C37O68415C39O68411C46O68443C51O68458C63O68467C70O69106C77O69119C81O69140C85O69134C90O69180C94O69169C99O69423C104O69436C108O69430C113O69481C117O69485C121O69451C125O69499C129O69492C132O69506C136O69520C151O69524C158O69603C166O69603C172O69633C180O69638C187O69697C193O69717C207O69738C223O69745C233O69786C240O69760C243O69792C244O69902C249O69907C255O69938C260O69907C270O69961C276O69981C290O70002C300O70008C313O70035C321O70052C332O70035C341O70071C348O70091C355O70024C358O70097C359O70200C373O70204C380O70252C381O70268C388O70274C395O70285C416O70300C422O70300C440O70336C443O70322C446O70340C447O70367C455O70398C460O70367C466O70605C468O70610C474O70626C478O70630C485O70637C496O70658C503O70669C521O70685C532O70751C533O70767C540O70773C547O70778C555O70797C566O70778C584O70823C591O70829,, -code-creation,JS,10,87292,0x2de0c9493f6e,135,isBelowBreakLength node:internal/util/inspect:2008:28,0x3f9e7a249d68,~ -code-source-info,0x2de0c9493f6e,21,66997,67928,C0O67450C7O67457C11O67493C15O67484C19O67506C23O67500C28O67523C29O67536C30O67552C32O67566C36O67557C41O67593C47O67609C49O67624C54O67643C58O67624C63O67647C76O67675C78O67696C82O67700C93O67740C97O67734C102O67761C103O67774C104O67575C109O67539C113O67867C115O67879C122O67890C128O67890C134O67926,, -code-creation,JS,10,87334,0x2de0c9494126,76,join node:internal/util:466:14,0x3f9e7a242950,~ -code-source-info,0x2de0c9494126,16,13078,13387,C0O13112C3O13129C9O13136C14O13174C18O13181C22O13203C24O13208C26O13208C31O13290C33O13303C43O13314C45O13321C52O13222C57O13190C61O13342C63O13355C73O13374C75O13385,, diff --git a/53242.0x/meta.json b/53242.0x/meta.json deleted file mode 100644 index 6175a6cb99..0000000000 --- a/53242.0x/meta.json +++ /dev/null @@ -1 +0,0 @@ -{"_":["test/integration/crud"],"open":false,"o":false,"version":false,"v":false,"help":false,"h":false,"quiet":false,"q":false,"silent":false,"s":false,"treeDebug":false,"tree-debug":false,"kernelTracingDebug":false,"kernel-tracing-debug":false,"kernelTracing":false,"kernel-tracing":false,"collectOnly":false,"collect-only":false,"writeTicks":false,"write-ticks":false,"--":[],"workingDir":"/Users/aditi.khare/Desktop/node-mongodb-native","argv":["test/integration/crud"],"pathToNodeBinary":"/Users/aditi.khare/.local/share/nvm/v20.10.0/bin/node","name":"flamegraph","collectDelay":0,"title":"node test/integration/crud","pid":53242,"inlined":{}} \ No newline at end of file diff --git a/results.json b/results.json deleted file mode 100644 index 453468e64f..0000000000 --- a/results.json +++ /dev/null @@ -1,282 +0,0 @@ -[ - { - "info": { - "test_name": "singleBench", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": null - } - ] - }, - { - "info": { - "test_name": "multiBench", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 371.2659722863112 - } - ] - }, - { - "info": { - "test_name": "parallelBench", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 401.8758834543072 - } - ] - }, - { - "info": { - "test_name": "readBench", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 452.728703781521 - } - ] - }, - { - "info": { - "test_name": "writeBench", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": null - } - ] - }, - { - "info": { - "test_name": "driverBench", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": null - } - ] - }, - { - "info": { - "test_name": "ldjsonMultiFileUpload", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 43.76500458178488 - } - ] - }, - { - "info": { - "test_name": "ldjsonMultiFileExport", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 48.97410960267591 - } - ] - }, - { - "info": { - "test_name": "gridfsMultiFileUpload", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 705.0814634145435 - } - ] - }, - { - "info": { - "test_name": "gridfsMultiFileDownload", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 809.6829562182244 - } - ] - }, - { - "info": { - "test_name": "runCommand", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 0.17235135124516524 - } - ] - }, - { - "info": { - "test_name": "findOne", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 13.351997593144219 - } - ] - }, - { - "info": { - "test_name": "smallDocInsertOne", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": null - } - ] - }, - { - "info": { - "test_name": "largeDocInsertOne", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 75.08738941799564 - } - ] - }, - { - "info": { - "test_name": "findManyAndEmptyCursor", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 93.52213618471905 - } - ] - }, - { - "info": { - "test_name": "smallDocBulkInsert", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 45.12345357012866 - } - ] - }, - { - "info": { - "test_name": "largeDocBulkInsert", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 50.54807457687957 - } - ] - }, - { - "info": { - "test_name": "gridFsUpload", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 653.0132685955446 - } - ] - }, - { - "info": { - "test_name": "gridFsDownload", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 1298.1123193088413 - } - ] - }, - { - "info": { - "test_name": "findManyAndToArray", - "tags": [ - "js-bson" - ] - }, - "metrics": [ - { - "name": "megabytes_per_second", - "value": 87.27658148175398 - } - ] - } -] \ No newline at end of file From 021e1188720bdba93a8a22ba3ad1e5be56953240 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Fri, 19 Jul 2024 16:53:50 -0400 Subject: [PATCH 15/18] lint fix --- test/integration/retryable-writes/retryable_writes.spec.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 2cc546ccf9..29b639e124 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -1,5 +1,4 @@ import * as path from 'path'; -import { lt } from 'semver'; import { loadSpecTests } from '../../spec'; import { runUnifiedSuite } from '../../tools/unified-spec-runner/runner'; From 7a1964bac402fa0952242eba54bb524f455d7329 Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Mon, 29 Jul 2024 10:55:17 -0400 Subject: [PATCH 16/18] post node-6276 update --- src/error.ts | 15 ++++++++++----- .../retryable_writes.spec.test.ts | 3 --- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/error.ts b/src/error.ts index d6a7dd2a7c..3e803555c8 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1250,13 +1250,18 @@ export function needsRetryableWriteLabel( } } - if (error instanceof MongoWriteConcernError && !(serverType === 'Mongos' && maxWireVersion < 9)) { - return RETRYABLE_WRITE_ERROR_CODES.has( - error.result.writeConcernError.code ?? Number(error.code) ?? 0 - ); + if (error instanceof MongoWriteConcernError) { + if (!(serverType === 'Mongos' && maxWireVersion < 9)) { + return RETRYABLE_WRITE_ERROR_CODES.has( + error.result.writeConcernError.code ?? Number(error.code) ?? 0 + ); + } + if (error.result.writeConcernError.code !== Number(error.code)) { + return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.code) ?? 0); + } } - if (error instanceof MongoError && typeof error.code === 'number') { + if (error instanceof MongoError && !(error instanceof MongoWriteConcernError)) { return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.code)); } diff --git a/test/integration/retryable-writes/retryable_writes.spec.test.ts b/test/integration/retryable-writes/retryable_writes.spec.test.ts index 29b639e124..1c9e510e4f 100644 --- a/test/integration/retryable-writes/retryable_writes.spec.test.ts +++ b/test/integration/retryable-writes/retryable_writes.spec.test.ts @@ -19,9 +19,6 @@ describe('Retryable Writes (unified)', function () { runUnifiedSuite(loadSpecTests(path.join('retryable-writes', 'unified')), ({ description }) => { return clientBulkWriteTests.includes(description) ? `TODO(NODE-6257): implement client-level bulk write.` - : description === - 'RetryableWriteError label is not added based on writeConcernError in pre-4.4 mongos response' - ? 'TODO(NODE-5720)' : false; }); }); From a0bdcf47375735de531fa614a09884037dee84cc Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Mon, 29 Jul 2024 11:07:28 -0400 Subject: [PATCH 17/18] post node-6276 update 2 --- src/error.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/error.ts b/src/error.ts index 3e803555c8..617e675c61 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1200,6 +1200,8 @@ export class MongoWriteConcernError extends MongoServerError { super({ ...result.writeConcernError, ...result }); this.errInfo = result.writeConcernError.errInfo; this.result = result; + // original top-level code from server response + this.originalCode = result.code ?? undefined; } override get name(): string { @@ -1256,12 +1258,10 @@ export function needsRetryableWriteLabel( error.result.writeConcernError.code ?? Number(error.code) ?? 0 ); } - if (error.result.writeConcernError.code !== Number(error.code)) { - return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.code) ?? 0); - } + return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.originalCode) ?? 0); } - if (error instanceof MongoError && !(error instanceof MongoWriteConcernError)) { + if (error instanceof MongoError) { return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.code)); } From 5f8020e5b211ee06f1fb8c44d7a6d217060884ba Mon Sep 17 00:00:00 2001 From: Aditi Khare Date: Mon, 29 Jul 2024 14:26:04 -0400 Subject: [PATCH 18/18] requested changes --- src/error.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/error.ts b/src/error.ts index 617e675c61..5ce02c82ab 100644 --- a/src/error.ts +++ b/src/error.ts @@ -1200,8 +1200,6 @@ export class MongoWriteConcernError extends MongoServerError { super({ ...result.writeConcernError, ...result }); this.errInfo = result.writeConcernError.errInfo; this.result = result; - // original top-level code from server response - this.originalCode = result.code ?? undefined; } override get name(): string { @@ -1253,12 +1251,13 @@ export function needsRetryableWriteLabel( } if (error instanceof MongoWriteConcernError) { - if (!(serverType === 'Mongos' && maxWireVersion < 9)) { - return RETRYABLE_WRITE_ERROR_CODES.has( - error.result.writeConcernError.code ?? Number(error.code) ?? 0 - ); + if (serverType === 'Mongos' && maxWireVersion < 9) { + // use original top-level code from server response + return RETRYABLE_WRITE_ERROR_CODES.has(error.result.code ?? 0); } - return RETRYABLE_WRITE_ERROR_CODES.has(Number(error.originalCode) ?? 0); + return RETRYABLE_WRITE_ERROR_CODES.has( + error.result.writeConcernError.code ?? Number(error.code) ?? 0 + ); } if (error instanceof MongoError) {